LoginSignup
1
0

More than 3 years have passed since last update.

WordPressで設定を追加する方法

Posted at

functions.php

add_action( "ほにゃらら", "setting_add" ,11, 1);
function setting_add( $wp_customize ) {
$wp_customize->add_setting('うんぬん', array(
'default' => '',
));
$wp_customize->add_control( 'うんぬん', array('settings' => 'なんとか',
'label' =>'うんぬん',
'section' => 'base_section',
'type' => 'text',
));
}

参考

1
0
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
0