很难找到在线文章,甚至在WP codex中,为主题选项在节内创建节。下面的屏幕截图显示了我正在尝试创建的内容:
我有下面创建这样的简单代码,但我不知道如何在节中创建节。任何帮助都将不胜感激,并帮助未来的开发人员。
function site_customize_register( $wp_customize ) {
/**
* section
*/
//so called "parent" section
$wp_customize->add_section("homepage_options",[
"title" => __("Homepage Options", "customizer_homepage_options_section"),
"priority" => 10,
]);
//so called "parent" section
$wp_customize->add_section("homepage_options_donate_now",[
"title" => __("Donate Now", "customizer_homepage_options_section"),
"priority" => 10,
]);
/**
* setting
*/
$wp_customize->add_setting("four_image_cta_block", [
"default" => "",
"transport" => "postMessage",
]);
$wp_customize->add_setting("four_image_cta_block_two", [
"default" => "",
"transport" => "postMessage",
]);
$wp_customize->add_setting("four_image_cta_block_three", [
"default" => "",
"transport" => "postMessage",
]);
$wp_customize->add_setting("four_image_cta_block_four", [
"default" => "",
"transport" => "postMessage",
]);
/**
* control
*/
$wp_customize->add_control(new WP_Customize_Control(
$wp_customize,
"four_image_cta_block",
[
"label" => __("First Item Link Text", "customizer_four_image_cta_block_label"),
"section" => "homepage_options",
"settings" => "four_image_cta_block",
"type" => "textarea",
]
));
$wp_customize->add_control(new WP_Customize_Control(
$wp_customize,
"four_image_cta_block_two",
[
"label" => __("Second Item Link Text", "customizer_four_image_cta_block_label"),
"section" => "homepage_options",
"settings" => "four_image_cta_block_two",
"type" => "textarea",
]
));
$wp_customize->add_control(new WP_Customize_Control(
$wp_customize,
"four_image_cta_block_three",
[
"label" => __("Third Item Link Text", "customizer_four_image_cta_block_label"),
"section" => "homepage_options",
"settings" => "four_image_cta_block_three",
"type" => "textarea",
]
));
$wp_customize->add_control(new WP_Customize_Control(
$wp_customize,
"four_image_cta_block_four",
[
"label" => __("Fourth Item Link Text", "customizer_four_image_cta_block_label"),
"section" => "homepage_options",
"settings" => "four_image_cta_block_four",
"type" => "textarea",
]
));
}