我不知道我是不是在这里呆着,但我对 Wordpress 的 WP_Query 有疑问。我有以下代码:
$the_query = new WP_Query();
$the_query->query('post_type=property');
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
?>
<div class="featured">
<h1><?php the_title() ?>d</h1>
<!--<ul>
<li>3 Bedrooms</li>
<li>Large Garden</li>
<li>Walking distance to shops</li>
<li>Semi-Detached</li>
</ul>-->
<a href="#" class="more-info">More details</a>
</div>
<?php
endwhile;
它正确地找到了 3 个帖子,但它没有显示the_title()
。任何人都可以看到原因吗?