在我的博客上,出于某种原因,其中一个分类页面拒绝加载新帖子,即使我清除了所有缓存。我正在使用WP Super Cache
(W3 Total Cache破坏了我的站点),Autoptimize
和Cloudflare
用于缓存。
我怀疑代码是问题所在,因为其他类别页面工作正常。
$query= new WP_Query(array(
\'offset\' => 1,
\'cat\' => $cat_ID
));
if ( $query->have_posts() ) while ( $query->have_posts() ) : $query->the_post();
get_template_part(\'content\', get_post_format()); // loaded from content.php
endwhile;
这可能是什么原因?