0

我不知道我是不是在这里呆着,但我对 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()。任何人都可以看到原因吗?

4

2 回答 2

0

你试过了**<?php the_title(); ?>**吗?我想你错过了“ ; ”:)

于 2012-06-13T12:35:52.017 回答
0

就像匈奴说的,你只是忘记了

如果您在Wp Title上寻找更多资源,请查看此处

于 2012-06-13T15:39:53.360 回答