每月显示Wordpress帖子取决于网址

时间:2014-06-02 16:06:23

标签: wordpress archive

如果网址说明了这一点:

http://rascalcapac.com/2014/04/

我不想仅在2014年4月之前发布帖子。我有这个,我不想使用它:

query_posts( //here shall i filter ); if (have_posts()) : while (have_posts()) : the_post();

任何可以帮助我的人?​​

1 个答案:

答案 0 :(得分:1)

由于这似乎不可能我wordpress,我用一些PHP修复它。答案可能对某人有用,所以这里有:

$yearSlashMonth = trim($_SERVER[REQUEST_URI],'//');
$year = substr($yearSlashMonth,0,4);
$month = substr($yearSlashMonth,5,2);

然后:

query_posts( 'year=' . $year . '&monthnum=' . $month . '' ); if (have_posts()) : while (have_posts()) : the_post();