我有以下 WordPress 类别的代码。当我希望它显示帖子的标题时,它会显示类别的名称。我如何让它正确显示帖子的标题。
<? query_posts('category_name=implants');
?>
<h3><?php single_cat_title(); ?></h3>
<?php if (have_posts()) : while (have_posts()) :
the_post(); ?>
<?php the_content( __('Read the
rest of this page »', 'template')); ?>
<?php endwhile; endif; ?></p>