あくまで自分用の覚え書きなので文章とか適当です...

get_custom_logo フィルターを使用します。

投稿だけ別のロゴにする例

functions.php

function my_custom_logo( $html ) {
	if ( is_home() || is_archive( 'post' ) || is_singular( 'post' ) ) {
		$html = '<h1><a href="' . home_url() . '/blog/" rel="home" itemprop="url"><img src="画像パス"></a></h1>';
	}
	return $html;
}
add_filter( 'get_custom_logo', 'my_custom_logo' );
スポンサーリンク

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です