我的代码有问题如何放置条件?在WP_Query中排除比特定日期更新的帖子。单击以下页面时的示例: 并点击“Swertres 2016年6月9日”,我不想将6月10日的结果包括在最新的帖子中
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' );
}
依旧.........