如何调整以下代码以在“外观”下显示我自定义的“主题设置”页面,而不是在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您可以找到完整的代码段
答案 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