我想为我的 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放进去,但什么也没发生。