更改wordpress后端中自定义设置页面的位置

时间:2014-07-28 08:14:36

标签: php wordpress

如何调整以下代码以在“外观”下显示我自定义的“主题设置”页面,而不是在wordpress后端的“设置”下显示?

add_action('admin_menu', 'theme_options_page'); function theme_options_page() { add_options_page('Theme Settings', 'Theme Settings', 'administrator', __FILE__, 'build_options_page');

Here您可以找到完整的代码段

1 个答案:

答案 0 :(得分:1)

使用add_submenu_page

add_submenu_page( themes.php, 'Title of Page', 'Theme Options', 'manage_options', 'custom_options', 'custom_function' );
function custom_function()
{
    // add your form code here or include a file here
}

for Appearance使用themes.php作为parent_slug

或者您也可以使用

使用add_theme_page

add_theme_page( 'this is page Title', 'Theme Options', 'manage_options', 'custom_options', 'custom_function' );

了解更多信息,请检查 you can check