当我点击下面页面中的旧帖子时,如何消除其他帖子

时间:2016-06-28 02:05:38

标签: wordpress

我的代码有问题如何放置条件?在WP_Query中排除比特定日期更新的帖子。单击以下页面时的示例: 并点击“Swertres 2016年6月9日”,我不想将6月10日的结果包括在最新的帖子中

answer

if( in_category('17'))
{
    $the_query = new WP_Query( 'cat=17&showposts=20' ); 
}
else  if( in_category('18'))
{
    $the_query = new WP_Query( 'cat=18&showposts=20' ); 
}
else  if( in_category('16'))
{
    $the_query = new WP_Query( 'cat=16&showposts=20' ); 
}

依旧.........

0 个答案:

没有答案