WordPressのテンプレートにカスタムロゴ機能がない場合
テンプレートのfunction.phpに以下のスクリプトを追加すると
機能が使えるとの事。
function themename_custom_logo_setup() {
$defaults = array(
‘height’ => 100, /*高さを100*/
‘width’ => 400, /*幅を400*/
‘flex-height’ => true,
‘flex-width’ => true,
‘header-text’ => array( ‘site-title’, ‘site-description’ ),
);
add_theme_support( ‘custom-logo’, $defaults );
}
add_action( ‘after_setup_theme’, ‘themename_custom_logo_setup’ );
コメントはお気軽にどうぞ