我的博客中有一个名为“作者”的自定义分类。 在主页上,使用以下脚本显示所有“作者”值的列表(例如: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>';
}
每个作者姓名都与他的网址永久链接,以显示该作者的帖子。 例如:
当我点击它们时,我会被重定向到包含该作者帖子的存档页面。 我不想要这个。我只是想得到作者的名字。 所以: