这三个人中的一个应该为你做这项工作。。。
News su <?php the_category(\', \'); ?>
Displays as:
新闻su
WordPress,
Computers,
Blogging如果一篇文章只分配了一个类别,它会显示如下:
新闻suWordPress
<div id="pagine"><?php echo get_the_category_list(); ?></div>
一
<div id="pagine">
<ul class="post-categories">
<li>
<a href="http://example.com/category/wordpress/" title="View all posts in Business" rel="category tag">WordPress</a>
</li>
<li>
<a href="http://example.com/category/computers/" title="View all posts in Business" rel="category tag">Computers</a>
</li>
</ul>
</div>
如果一个职位只分配了一个类别,则输出如下:<div id="pagine">
<ul class="post-categories">
<li>
<a href="http://example.com/category/wordpress/" title="View all posts in Business" rel="category tag">WordPress</a>
</li>
</ul>
</div>
如果您只想显示一个类别(将显示ID最低的类别),无论为一篇文章分配了多少个类别,请使用以下方法:<div id="pagine">
<ul>
<li>
<?php
$category = get_the_category();
echo \'<a href="\'.get_category_link($category[0]->cat_ID).\'">News su \' . $category[0]->cat_name . \'</a>\';
?>
</li>
</ul>
</div>
以上代码始终显示一个类别,如下所示:新闻suWordPress
因此,给定这些代码(以及它们各自的功能),使它们适合您的需要