在the_excerpt()中显示完整帖子

时间:2014-05-29 14:52:17

标签: php wordpress post

这会将the_excrept()的字数限制设置为9999:

function new_excerpt_length($length) {
    return 9999;
}
add_filter('excerpt_length', 'new_excerpt_length');

它可以显示一个非常大的摘录,但是当我不想做的就是在_excerpt()中显示the_post()中的所有单词时,它对我的​​问题来说是一个糟糕的解决方案。有谁可以帮我这个?

2 个答案:

答案 0 :(得分:0)

为什么不使用。内容();功能它将显示帖子的全部内容。

检查参考资料

http://codex.wordpress.org/Function_Reference/the_content

答案 1 :(得分:0)

摘录是帖子的简短摘录。如果您想显示整个帖子内容,那么您使用了错误的功能。

the_excerpt()替换为the_content()

如果您想在the_excerpt()内显示所有帖子内容,可以使用以下内容:

function wpse_replace_excerpt_with_content( $excerpt ) {
    return get_the_content();
}
add_filter( 'the_excerpt', 'wpse_replace_excerpt_with_content' );

我无法想象你为什么要这样做但是有可能。