0

我正在为具有一些自定义设置的应用程序创建一个专用主​​题,这些设置将仅用于从全新的 wordpress 安装中设置应用程序几次。

如何通过functions.php和一个包含设置的页面在wordpress admin中为21个子主题创建顶级菜单?我想把它作为菜单中的第一项。

4

1 回答 1

1

这是一个解决方案。只需将此代码放在functions.php中

<?php
/******* New menu item for admin *********/
add_action( 'admin_menu', 'register_my_custom_menu_page' );

function register_my_custom_menu_page(){
    add_menu_page( 'custom menu title', '♥Custom theme options♥', 'manage_options', 'custompage', 'my_custom_menu_page', '' /* or something like ... plugins_url( 'myplugin/images/icon.png' )*/, 1 ); 
}

function my_custom_menu_page(){
?>
Hello world. This is a simple example page. 
<?php
}

?>
于 2013-05-15T08:53:16.663 回答