可以在以下管理区域中更改源中的项目数:
Settings > Reading > Syndication feeds show the most recent
更改上述设置将影响所有提要。如果只想更改特定帖子类型的帖子数量,可以将以下代码添加到
functions.php
文件,更改
post_type_name
到您的帖子类型的名称(
Source 对于此技巧)。
function wpse240469_feed_posts( $query ){
if ( $query->is_main_query() &&
$query->is_feed() &&
\'post_type_name\' === $query->query_vars[\'post_type\']
) {
add_filter( \'option_posts_per_rss\', \'wpse240469_feed_number_posts\' );
}
}
add_action( \'pre_get_posts\', \'wpse240469_feed_posts\' );
function wpse240469_feed_number_posts(){
return -1; // -1 for all posts, change to whatever value you want
}