我想在author.php页面上显示类别列表。实际上我是通过get_categories()制作了这个文件但它显示了这个页面上的所有类别。代码预览
<?php get_header(); ?>
<div id="page">
<div class="article">
<div id="content_box">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
Title, excerp etc
<?php endwhile; endif; ?>
</div>
</div>
<!-- My Problem start here -->
<div class="active-in widget">
<h3 class="widget-title"><?php _e('Active In', 'codersaiful'); ?></h3>
<div class="post-info">
<?php global $wp_query;
$cats = get_categories();
$postAuthor = $wp_query->post->post_author;
$catlist = "";
foreach ( $cats as $c ) {
$catlist .= '<a href="'.esc_url( get_category_link( $c->term_id ) ).'" ><span class="thecategory">'.esc_html( $c->name ).'</span></a>';
}
?>
<?php echo $catlist; ?>
</div>
</div>
<!-- My Problem end here -->
</div>
<?php get_footer(); ?>
如何才能根据作者获取类别。 我期待听到专家的回应。 感谢