如何给wordpress主题添加后台设置选项
1个回答
展开全部
1、找到wordpress主题目录下的函数文件functions.php 用notepad++等软件打开,在下面添加以下代码:
require ('theme-options.php');
2、在wordpress主题目录下创建一个theme-options.php文件,并将下面的代码加入
//注册数据add_action('admin_init', 'register_theme_settings');function register_theme_settings() { register_setting("theme_mods_freshblog","theme_mods_freshblog");}//添加admin外观菜单add_action('admin_menu', 'add_theme_options_menu');function add_theme_options_menu() { add_theme_page('Freshblog Theme Options','Freshblog Theme Options','edit_theme_options','theme-options', 'theme_settings_admin'););}function theme_settings_admin() { //这里写选项页面内容}
到这里的时候,你再研究的话有木有发现主题设置选项页面里的内容都会以theme_mods_freshblog的字段名在数据库里的option表中出现?
require ('theme-options.php');
2、在wordpress主题目录下创建一个theme-options.php文件,并将下面的代码加入
//注册数据add_action('admin_init', 'register_theme_settings');function register_theme_settings() { register_setting("theme_mods_freshblog","theme_mods_freshblog");}//添加admin外观菜单add_action('admin_menu', 'add_theme_options_menu');function add_theme_options_menu() { add_theme_page('Freshblog Theme Options','Freshblog Theme Options','edit_theme_options','theme-options', 'theme_settings_admin'););}function theme_settings_admin() { //这里写选项页面内容}
到这里的时候,你再研究的话有木有发现主题设置选项页面里的内容都会以theme_mods_freshblog的字段名在数据库里的option表中出现?
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询