アーカイプページで、カテゴリースラッグを元にタイトル画像を表示する(子カテゴリーの場合、自カテゴリーの画像を使う)
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
<?php if(is_category()): ?> | |
<h1><img src="<?php echo get_template_directory_uri(); ?>/images/title_<?php | |
$cat_id = get_query_var('cat'); | |
$cat = get_category($cat_id); | |
echo $cat->category_nicename; | |
?>.jpg" alt="<?php single_cat_title(); ?>" /></h1> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment