カスタマイザーのセクションに、画像などを挿入する

カスタマイザーの指定したセクションの上部に画像などを配置可能なフック

customize_render_section_[カスタマイザーのsection_id]

が使えます

add_action('customize_render_section_[カスタマイザーのsection_id]', 'my_customize_rendar_section' );

function my_customize_rendar_section(){
	
	echo '<img src="http://example.com/example.jpg" />';
}

サンプル

insert-image-customizer

[emulsion_relate_posts]