目次
# 設定
まずは、「function.php」に「カスタムロゴ」を使えるようにするため、
「add_theme_support( ‘custom-logo’);」を適用します。
function theme_setup() {
// Logo
add_theme_support('custom-logo');
}
add_action( 'after_setup_theme', 'theme_setup' );
その後、「header.php」に以下のコードを追加して、
ロゴが設定されていれば、ロゴ画像のみを表示
されていなければ、サイトタイトルをテキストで表示する
if文を書き込みます。
<a href="<?php echo esc_url( home_url('/') ); ?>">
<?php the_custom_logo(); if ( ! has_custom_logo() ) { ?>
<?php bloginfo( 'name' ); ?>
<?php } ?>
</a>