获取分类值名称

时间:2012-07-27 10:58:42

标签: wordpress

我的博客中有一个名为“作者”的自定义分类。 在主页上,使用以下脚本显示所有“作者”值的列表(例如:Mark,Paul,John等):

$terms = get_terms("autors");
$count = count($terms);
if ( $count > 0 ){
echo '<ul>';
foreach ( $terms as $term ) {
echo '<li> <a href="/autors/' . $term->slug . '" title="' . sprintf(__('View all post filed under %s', 'my_localization_domain'), $term->name) . '">' . $term->name . '</a> </li>';
}
echo '</ul>';
}

每个作者姓名都与他的网址永久链接,以显示该作者的帖子。 例如:

当我点击它们时,我会被重定向到包含该作者帖子的存档页面。 我不想要这个。我只是想得到作者的名字。 所以:

  • 如何阻止存档页面显示?
  • 如何获取作者姓名? 例如:如果我在页面http://www.test.com/autors/mark上,我想获得* $ author_name = mark *;
你能帮助我吗? 谢谢

0 个答案:

没有答案