如何在WordPress管理菜单中创建一个新按钮

时间:2015-04-09 14:03:27

标签: wordpress

请告诉我如何在此处创建新按钮(位于信息中心左侧导航栏的底部):http://prntscr.com/6rlbda

此按钮只需传输一个GET参数。

感谢。

2 个答案:

答案 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)

您需要在主题或插件中的functions.php中添加功能。

只有当您添加代码的插件或主题处于活动状态时,才会显示新按钮。

请参阅此codex pace

据我所知,这是唯一正确的方法。