我已将此功能注册到主题定制中。但它没有显示到前端(自定义部分)。// Header section customize fieldfunction header($wp_customize){$wp_customize->add_section('header_section', array( 'title' => 'Header Section'));$wp_customize->add_setting('header_headline', array( 'default' => 'Hello, I\'m'));$wp_customize->add_control(new WP_Customize_control($wp_customize, 'header_headline_control', array( 'label' => 'Headline', 'section' => 'header_section', 'setting' => 'header_headline')));}add_action('customize_register','header');
3 回答
开满天机
TA贡献1786条经验 获得超13个赞
我想添加图像,因此我使用了
// Provider Image
$wp_customize->add_setting('header-image');
$wp_customize->add_control(new WP_Customize_Cropped_Image_Control($wp_customize, 'header-image', array(
'label' => 'Add Image',
'section' => 'header-section',
'settings' => 'header-image',
'width' => 426,
'height' => 642
)));
和回声
<img src="<?php echo wp_get_attatchment_url(get_theme_mod('header-image')) ?>">
上传图片工作正常,但页面正在加载。
- 3 回答
- 0 关注
- 154 浏览
添加回答
举报
0/150
提交
取消