两个RSS订阅,不同的项目限制?

时间:2016-05-20 作者:user1878980

我的Wordpress博客上有两个RSS提要:

mydomain。com/feed/li>mydomain。com/feed/anotherfeed/li>是否可以对这些设置不同的项目限制?我想在第一个提要中显示10个项目,但在第二个提要中我想显示30个项目。

提前感谢

1 个回复
SO网友:cjbj

当然可以。首先创建提要as per codex:

function anotherfeed_init(){
    add_feed(\'anotherfeed\');
}
add_action(\'init\', \'anotherfeed_init\');
现在,change the post count 对于此特定提要:

function anotherfeed_post_count( $query ) {
    if( $query->is_main_query() && is_feed(\'anotherfeed\') )
        $query->set( \'posts_per_rss\', 30 );
}
add_action( \'pre_get_posts\', \'anotherfeed_post_count\' );