css Wordpress - 自定义主题选项

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css Wordpress - 自定义主题选项相关的知识,希望对你有一定的参考价值。

//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 }

以上是关于css Wordpress - 自定义主题选项的主要内容,如果未能解决你的问题,请参考以下文章

如何将自定义 css 和 js 文件添加到 wordpress 的管理区域 [关闭]

WordPress 3.5 自定义媒体上传为您的主题选项

居中对齐标题菜单:Wordpress(Avada 主题)自定义 CSS

如何在wordpress自定义中添加颜色选项

将自定义 css 添加到 wordpress 中的页面模板

使用自定义 CSS 在 Wordpress.com 主题上将标题扩展到全宽 [关闭]