LoginSignup
1
1

More than 5 years have passed since last update.

wordpressでのcustomizeメモ

Last updated at Posted at 2018-06-03

画像の追加

$wp_customize->add_setting( 'header_img' );
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'header_img', array(
    'label' => 'ロゴ画像',
    'section' => 'img_section',
    'settings' => 'header_img',
    'description' => 'ロゴ画像を設定してください。',
)));

テキストの追加

$wp_customize->add_setting( 'contents[main_text]', array(
    'default' => '',
    'type' => 'option',
    'transport' => 'postMessage',
));
$wp_customize->add_control( 'main_text', array(
    'settings' => 'contents[main_text]',
    'label'    => 'メインのテキストを入力して下さい。',
    'section'  => 'contents_section',
    'type'     => 'text',
));
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1