我已显示所选类别的标题。它是一个锚标记,但永久链接不起作用。这里有什么问题?它得到了可能只是点击的旧链接。但是没有使用确切的类别。
<a class="heading-link" href="<?php the_permalink(); ?>">
<?php
query_posts('cat=4&showposts=1');
if (have_posts()) :
while (have_posts()) : the_post();
the_title();
endwhile;
endif;
wp_reset_query();
?>
</a>
答案 0 :(得分:0)
在您的循环中放置<a>
标记
<?php
query_posts('cat=4&showposts=1');
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endwhile;
endif;
wp_reset_query();
?>