如何删除摘录中的“继续阅读”内容?

时间:2011-08-25 作者:Adam

我知道\\u内容有一个方便的dandy$strip\\u摘要参数,可以让您设置是否有“继续阅读”文本。没有这样的运气为\\u摘录。。。

我想把它扔掉。我之前试着把它缩短以便继续读下去,但这似乎也不起作用。

 function beernews_auto_excerpt_more( $more ) {
    return \' &hellip;\' . __( \'Read on <span class="meta-nav">&rarr;</span>\', \'twentyeleven\' ) . \'</a>\';

}
add_filter( \'excerpt_more\', \'beernews_auto_excerpt_more\' );
主题是二十一。

2 个回复
最合适的回答,由SO网友:wired 整理而成

如果您使用的是211主题,我认为您需要先删除该主题的过滤器,然后才能定义自己的过滤器:

删除\\u筛选器(“摘录\\u more”、“twentyeleven\\u auto\\u摘录\\u more”);

从t-p编辑建筑

尝试以下操作:

    add_action( \'after_setup_theme\', \'my_child_theme_setup\' );
    function my_child_theme_setup() {
       remove_filter( \'excerpt_more\', \'twentyten_auto_excerpt_more\' );
    }
如果您使用的是twentyeleven,请使用“twentyeleven\\u auto\\u extract\\u more”而不是“twentyeleven\\u auto\\u extract\\u more”

SO网友:Tara

我在我的210个儿童主题的函数中使用了这个。php:

add_action( \'after_setup_theme\', \'my_child_theme_setup\' );
function my_child_theme_setup() {
remove_filter( \'excerpt_length\', \'twentyten_excerpt_length\' );
}

结束

相关推荐

_Excerpt函数不显示图像

我有图片帖子。在单个贴子页面中,所有内容都能很好地显示图像。但在博客页面中,内容只显示而不显示图像。我怎样才能把它展示出来例如http://www.beezid.com/blog此博客显示带有“阅读更多”链接的图像但我的情况不是这样http://optisolbusiness.com/gonzobidz/blog/提前感谢!