为了账号安全,请及时绑定邮箱和手机立即绑定

customize_register 未向前端显示

customize_register 未向前端显示

PHP
天涯尽头无女友 2021-10-15 15:55:32
我已将此功能注册到主题定制中。但它没有显示到前端(自定义部分)。// 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')) ?>">

上传图片工作正常,但页面正在加载。


查看完整回答
反对 回复 2021-10-15
  • 3 回答
  • 0 关注
  • 154 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信