0

我们的网站是月刊,我们希望保留较旧的帖子,但我们不希望用户在点击导航栏的某个部分时看到上个月的帖子。

我们怎样才能做到这一点?

4

1 回答 1

0

WordPress Codex 文章中有一个示例:

主页上当月类别 13 的帖子:

if ( is_home() ) {
    query_posts( $query_string . '&cat=13&monthnum=' . date( 'n', current_time( 'timestamp' ) ) );
}
于 2013-04-15T08:24:51.147 回答