我想知道是否可以使用定制器控件创建一个“设计人[名称]”下拉菜单,并让它在页脚中回显个人/组的名称,作为指向该网站的链接。这是我的定制器中的内容。php,但我不确定如何合并URL:
// Add "Designed by" notification in footer
$wp_customize->add_setting(
\'powered_by\',
array(
\'default\' => \'Group 1\',
//\'sanitize_callback\' => \'sanitize_powered_by\',
\'capability\' => \'edit_theme_options\',
)
);
$wp_customize->add_control(
\'powered_by\', array(
\'section\' => \'footer_section\',
\'label\' => __( \'Designed by\' ),
\'type\' => \'select\',
\'priority\' => 8,
\'choices\' => array(
\'group1\' => __( \'Group 1\', \'ctotheme\' ),
\'group2\' => __( \'Group 2\', \'ctotheme\' ),
\'group3\' => __( \'Group 3\', \'ctotheme\' ),
\'group4\' => __( \'Group 4\', \'ctotheme\' )
)
)
);
我的页脚上有这个。php:
<?php if( get_theme_mod( \'hide_powered_by\' ) == false) { ?>
Designed by <a href="#" target="_blank"><?php echo get_theme_mod( \'powered_by\' ); ?></a>.
<?php } // end hide_powered_by if ?>
我希望输出为:设计人
Group 1.
目前,它的输出为:“由组1设计”,而不是“由组1设计”。。。它使用=>之前的单词,而不是后面的标签。
对如何实现这一目标有何见解?谢谢你的帮助!