the_title() 和the_permalink() 是自动回显的函数。在这种情况下使用get_the_title()
和get_permalink()
.
代码应如下所示:
while ( $query->have_posts($post->ID) ) : $query->the_post();
echo \'<li><a href="\'. get_permalink(). \'">\' .get_the_title() .\'</a></li>\';
endwhile;
下面是另一种使用
the_title
和
the_permalink
:
while ( $query->have_posts($post->ID) ) : $query->the_post(); ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php endwhile;