这会将the_excrept()的字数限制设置为9999:
function new_excerpt_length($length) {
return 9999;
}
add_filter('excerpt_length', 'new_excerpt_length');
它可以显示一个非常大的摘录,但是当我不想做的就是在_excerpt()中显示the_post()中的所有单词时,它对我的问题来说是一个糟糕的解决方案。有谁可以帮我这个?
答案 0 :(得分:0)
答案 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' );
我无法想象你为什么要这样做但是有可能。