我使用以下代码创建了一个自定义侧边栏壁纸侧边栏.php。除了链接之外,一切都显示得很完美。
<div id="wallpaper-categories" class="widget widget_categories">
<h4 class="widgettitle">Wallpaper Categories</h4>
<ul>
<?php
$args = array( 'type' => 'post' , 'taxonomy' => 'wallpaper' , 'order' => 'ASC' , 'orderby' => 'name' );
$categories = get_categories($args);
foreach ($categories as $category) {
?>
<li class="cat-item cat-item-<?php echo $category->cat_ID; ?>">
<a title="<?php echo sprintf( __( "View all posts in %s" ), $category->name ); ?>" href="<?php get_category_link( $category->term_id ); ?>"><?php echo $category->name; ?></a>
</li>
<?php
}
?>
</ul>
</div>