我想为我的wordpress主题创建一个自定义选项主题页面,我找到了本教程 http://wp.tutsplus.com/tutorials/theme-development/create-a-settings-page-for-your-wordpress-theme/,但问题是它不起作用,我担心这已经过时了。我正在使用wordpress 3.7.1。我添加并尝试创建wordpress设置主题页面的功能是
function setup_theme_admin_menus() {
add_submenu_page('themes.php',
'Front Page Elements', 'Front Page', 'manage_options',
'front-page-elements', 'theme_front_page_settings');
}
function theme_front_page_settings() {
echo "Hello, world!";
}
我把我的主题放在了functions.php中但没有发生任何事情。
答案 0 :(得分:1)
添加此代码: add_action(“admin_menu”,“setup_theme_admin_menus”);