最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

wp query - WP_Query not returning any posts

programmeradmin0浏览0评论

I'm used to writing complex WP queries, but am currently stumped. On a new website I have a dozen published posts, but the basic loop in WordPress doesn't find them.

 <?php

$the_query = new WP_Query($args);

if ( $the_query->have_posts() ) {
    while ( $the_query->have_posts() ) {
        $the_query->the_post();
         echo '<li>' . get_the_title() . '</li>';
    }
} else {
   echo 'no posts found';
 }
wp_reset_postdata();

?>

I just get "no posts found" returned. What could the issue be?

发布评论

评论列表(0)

  1. 暂无评论