WP_Query在不同的位置回显数组

时间:2013-02-11 22:10:00

标签: arrays wordpress loops

您好我需要在不同的区域回显一个WP_Query,这样我就可以在每个渲染帖子标题之间添加内容..

所以基本上我想手动突破帖子,这样我就可以将它们放在静态内容中了。希望这是有道理的。

我想做这样的事情。请看我的笔记。

$the_query = new WP_Query( $args );

while ( $the_query->have_posts() ) :

    $the_query->the_post();

    echo '<li>' . get_the_title() . '</li>'; // first post title

        //echo 'some static content';

        echo '<li>' . get_the_title() . '</li>'; //second post title

        //echo 'some more static content';

endwhile;

1 个答案:

答案 0 :(得分:0)

您可以使用包含所有静态内容的数组:

$the_query = new WP_Query( $args );

$static_content = array ('content after first post','content after second post');

$counter = 0;

while ( $the_query->have_posts() ) :

    $the_query->the_post();

    echo '<li>' . get_the_title() . '</li>';

    echo $static_content[$counter];

    $counter++;

endwhile;