如果您的视频粘贴到帖子正文中,您有几个选项。
在上使用过滤器the_content
和preg_replace
删除内容将您的内容包装在短代码中我将推荐选项2,因为选项1涉及使用regex处理标记,这很棘手,而且容易出错,而您的问题中包含的信息不足以让我写出来。
function hide_on_home_page_wpse_97587($atts,$content) {
if (!is_home()) {
return $content;
}
}
add_shortcode(\'nohome\',\'hide_on_home_page_wpse_97587\');
然后在发布内容时,将切换的内容放在
[nohome]
和
[/nohome]