Skip to content

Instantly share code, notes, and snippets.

@FirstLayout
Created September 14, 2018 06:16
子カテゴリーリストを表示
if ( is_category() === true ) {
$categories = get_categories( array(
'parent' => get_query_var( 'cat' ),
) );
if ( $categories ) : ?>
<p>以下の子カテゴリーもご参照ください。</p>
<ul>
<?php foreach ( $categories as $category ) : ?>
<li><a href="<?php echo get_category_link( $category->cat_ID ); ?>"><?php echo $category->cat_name; ?></a></li>
<?php endforeach; ?>
</ul>
<?php endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment