certainlyakey
4/8/2015 - 5:01 PM

Wordpress - custom theme options

Wordpress - custom theme options

//more fields http://themefoundation.com/wordpress-theme-customizer/
//get options with get_theme_mod('setting_id','some value if setting is blank');

function site_customize_register($wp_customize){

	$wp_customize->remove_section('title_tagline');
	$wp_customize->remove_section('nav');
	$wp_customize->remove_section('static_front_page');

	$wp_customize->add_section('custom_options_section_id', array( 
		'title' => 'Дополнительные настройки',
		'description' => 'Настройки для разных частей сайта',
		// 'priority' => 10
	));

	$wp_customize->add_setting('event_location_default', array(
		// 'default'    => ''
	));
	 
	$wp_customize->add_control('event_location_default', array(
		'label' => 'Место события по умолчанию',
		'section' => 'custom_options_section_id',
		'type' => 'text',
		'description' => 'Some description'
	));
}
add_action('customize_register', 'site_customize_register');
/*Custom theme options tweaks */
.customize-section-description-container {padding-bottom:1em; }
.customize-control-title {line-height:20px }