如何创建该选项, 请在我的自定义主题上看到此图像?我可以使用自定义帖子来制作主题, 但是我想使网站类似于该图片。谢谢。
#1图像中显示的项目是”
定制程序部分”
, 并通过定制程序API添加。你将使用类似这样的代码来添加一个部分。注意:你还需要添加设置和控件。
<
?php
function mytheme_customize_register( $wp_customize ) {
//All our sections, settings, and controls will be added here
$wp_customize->
add_section( 'mytheme_new_section_slider' , array(
'title'=>
__( 'Slider Settings', 'mytheme' ), 'priority'=>
30, ) );
// you would also have settings and controls that are added to the section.
// if you add a section and it contains no controls it will not appear.
}
add_action( 'customize_register', 'mytheme_customize_register' );
这是有关add_section方法的一些文档:https://codex.wordpress.org/Class_Reference/WP_Customize_Manager/add_section
【如何在自定义帖子中添加wordpress自定义seciton】以及有关整个过程的一些信息, 包括添加设置和控件:https://codex.wordpress.org/Theme_Customization_API
推荐阅读
- 如何同时向标签添加多个CSS属性()
- 在MAMP上工作时如何将图像添加到wordpress主题()
- 如何为WordPress主题添加自定义页眉和页脚
- 如何通过仪表板向页脚添加内容()
- 如何为WP中的页面添加类别()
- 如何在WordPress的帖子中添加缩略图()
- 如何使用电子邮件类型”纯文本”在管理电子邮件中添加购买记录(电子商务)
- 一起玩转树莓派(22)——DS1302硬件时钟实践
- #yyds干货盘点#Java ASM系列((098)Cyclomatic Complexity)