次のコードでカスタム sidebar-wallpaper-sidebar.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>