我进行了如下wp\\U查询。这是其中的一部分。这是可行的。
$args = .....;
$query = new WP_Query($args);
while($query->have_posts() ) :
$query->the_post();
?>
<div class="each">
<h4><?php the_title(); ?> </h4>
</div>
<?php endwhile; wp_reset_query(); ?>
这是这样显示的。
<div>title 1</div>
<div>title 2</div>
<div>title 3</div>
...
此时,当我单击其中一个标题时,它需要链接到已单击帖子的详细信息。但我不知道如何链接到详细页面。我认为应该把它和“单身”联系起来。php’。是这样吗?以及如何链接到该详细页面(可能是singles.php)?非常感谢。
最合适的回答,由SO网友:Mostafa Norzade 整理而成
替换为以下代码:
<?php
$args = .....;
$query = new WP_Query($args);
while($query->have_posts() ) :
$query->the_post();
?>
<div class="each">
<h4><a href="<?php the_permalink();?>" title="<?php the_title_attribute();?>"><?php the_title();?></a></h4>
</div>
<?php endwhile; wp_reset_query(); ?>