0

我需要在 WordPress 定制器的站点标识 -> 徽标部分上方添加自定义描述,例如“使用 250 像素 x 250 像素的图像”。

(附上图片了解更多详情)

我的第一个想法是查看这个文档: https://codex.wordpress.org/Theme_Customization_API我用来添加新控件,但由于徽标已经存在,它似乎有点不同。

我需要以某种方式吸引它吗?

任何帮助,将不胜感激。 这是我要添加描述的示例

4

1 回答 1

0

更新。对我有用的解决方案是覆盖徽标。例如:

$wp_customize->add_control(
    new WP_Customize_Image_Control(
        $wp_customize,
        'custom_logo',
        array(
            'description' => esc_html__( 'Use an image that is 250px by 250px.', 'namespace' ),
            'label'       => esc_html__( 'Primary Logo', 'namespace' ),
            'section'     => 'title_tagline',
            'priority'    => 8,
        )
    )
);
于 2020-09-30T13:31:46.243 回答