Created
September 14, 2018 06:16
子カテゴリーリストを表示
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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