如何删除wordpress上的更多内容?

时间:2013-11-17 07:31:20

标签: wordpress web

如何删除网站上的更多按钮(wordpress)?

the_content( __( 'Read more →', 'ward' ) );

4 个答案:

答案 0 :(得分:2)

更好地使用过滤器 - 这样您就不需要更改所有主题文件并搜索特定代码..

add_filter( 'the_content_more_link', 'my_more_link', 10, 2 );

function my_more_link( $more_link, $more_link_text ) {
$my_custom_more = "Continue reading this post"; // leave NULL to diable
    return str_replace( $more_link_text, $my_custom_more, $more_link );
}

并以相同的方式使用add_filter('excerpt_more', 'my_more_link');摘录

答案 1 :(得分:1)

尝试替换

the_content( __( 'Read more →', 'ward' ) );

使用:

the_excerpt();

或者您可以在元素上使用CSS display:none;来隐藏它。

答案 2 :(得分:1)

来自食典委(http://codex.wordpress.org/Customizing_the_Read_More):

<?php the_content( $more_link_text , $strip_teaser ); ?>

$ more_link_text设置链接文本,如“Read More”。第二个,$ strip_teaser,设置是否应隐藏(更多)链接(TRUE)或显示(FALSE)。默认值为FALSE,显示链接文本。

要删除预告片:

更改the_content();在你的index.php中(即第二个参数控制它):

the_content('',FALSE,'');

答案 3 :(得分:1)

更好的过滤器。

add_filter( 'the_content_more_link', 'disable_more_link', 10, 2 );

function disable_more_link( $more_link, $more_link_text ) {
    return;
}

这可能会禁用所有..尚未测试..