您可以选择Full text
和Summary
在读取设置中:
如果您选择Summary
, 然后
a) 要控制提要摘要中的字数,可以使用:
add_filter(\'excerpt_length\',\'custom_excerpt_length\');
function custom_excerpt_length( $num_words ){
return 30; // number of words to show
}
摘要中的默认字数为
55
.
b) 如果要使用<!--more-->
在定义提要摘要的帖子内容中,可以使用以下内容:
add_filter( \'the_content\', \'custom_content_feed\' );
function custom_content_feed( $content ){
if( is_feed() ){
// <!--more--> used in the post content:
if( strpos( $content, \'<span id="more-\') !== FALSE ){
// remove the excerpt length limit
add_filter( \'excerpt_length\', \'custom_long_excerpt_length\' );
// get the content before <!--more-->
$content = stristr( $content, \'<span id="more-\', TRUE );
// add the default \'read more\' symbols at the end:
$excerpt_more = apply_filters( \'excerpt_more\', \' \' . \'[…]\' );
$content .= $excerpt_more;
}
}
return $content;
}
function custom_long_excerpt_length( $num_words ){
return 99999;
}
c) 您也可以同时使用a)和b)。