0
我在WordPress中有一個類別的代碼。當我希望它顯示帖子的標題時,它顯示類別的名稱。我如何獲得它顯示正確的職位的標題。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>
Maiorano感謝您的回答和校正,它的工作完美。 –