这可以用数百个插件来解决,但我很高兴有人想用代码来实现。
因此,你想要的其实不是隐藏什么,而是仅仅发表文章after the one month ago date.
$onemonth_before = date( \'Y-m-d\',strtotime(\'-1 month\') );
$args = array(
//if you have custom post type
\'post_type\' => \'your-post-type\',
\'posts_per_page\' => 20,
\'post_status\' => \'publish\',
\'tag\' => \'sometag\',
\'date_query\' => array(
\'after\' => $onemonth_before,
\'inclusive\' => true,
),
);
$query = new WP_Query( $args );
在你的情况下,这可能需要一些改变。
关于强者的更多信息date_query 可以在中找到codex