防止WordPress摘录隐藏视频

时间:2013-11-30 17:43:51

标签: php wordpress video

我在我的网站上使用WordPress,我希望将首页上的帖子长度限制为the_excerpt();到大约100个单词。但是,如果我发布另一个有视频的帖子会隐藏视频而我不想这样做。

但是,如果我在帖子中使用the_content();<!--more-->标记,则“阅读更多”链接后面会显示#more - ##,并使其几乎位于页面底部。

1 个答案:

答案 0 :(得分:0)

您可以创建自己的功能而不是摘录

function get_new_excerpt(){
$excerpt = get_the_content();
$excerpt = strip_shortcodes($excerpt);
$excerpt = strip_tags($excerpt);
$new_excerpt = substr($excerpt, 0, 20);
return $new_excerpt;
}

将它放在functions.php中 现在使用

而不是the_excerpt
echo get_new_excerpt();
相关问题