我想把一整篇文章内容都列在一张清单上。我想要的结果是:
<ul>
<li>the fist Post </li>
<li>the second Post </li>
<li>the third Post </li>
</ul>
我试了好几次,就是不管用。
下面是get posts的我的php:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_cla
下面的函数工作正常,但我需要在循环中运行它。如果这样做,文章内容实际上是从我的WP_Query的最后一篇文章中提取的。而不是从应该出现的那个。
有没有办法运行我的查询,让循环不受影响的?
function recent_post_by_author() {
echo '<div class="recent_post_by_author">';
$my_query = new WP_Query('author_name=Radek&showposts=2');
while ($my_query->have_po