答案 0 :(得分:3)
您不能在菜单栏中添加“按钮”,只能添加标准链接(尽管您可以选择图标。)
此外,您的问题并没有指定您真正想要的按钮(或链接到的页面)到做,但标准方法是:
add_action( 'admin_menu', 'register_my_menu_item' );
function register_my_menu_item() {
# the add_action ensures this is only run when admin pages are displayed
add_menu_page( 'Example page', 'Example menu', 'manage_options', 'query-string-parameter', 'my_menu_item');
}
function my_menu_item() {
# your new admin page contents (or behaviour go here)
echo 'Hello World!';
}
(理想情况下,这应该放在插件中,但它也可以放在你的主题functions.php
)
文档:https://codex.wordpress.org/Function_Reference/add_menu_page
答案 1 :(得分:-1)