How to create a new button in WordPress admin menu

Dmitriy Kupriyanov

Please tell me how to create a new button here (at the bottom of the dashboard left-hand navigation): http://prntscr.com/6rlbda

This button only needs to transmit one GET parameter.

Thanks.

William Turrell

You can't add a "button" to the menubar, only a standard link (though you can choose the icon.)

Also your question doesn't specify what you actually want the button (or page it links to) to do, but the standard approach is:

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!';
}

(This should ideally go in a plugin, but it can also go in your theme's functions.php)

Documentation: https://codex.wordpress.org/Function_Reference/add_menu_page

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to create tab menu in admin page wordpress

From Dev

How to create new wordpress admin user from FTP

From Dev

How to make wordpress admin menu collapsed by default?

From Dev

How to add an extra menu to wordpress admin screen

From Dev

How to hide admin menu generate by plugins in wordpress

From Dev

Add Menu in WordPress Admin

From Dev

Add Menu in WordPress Admin

From Dev

create a new menu option menu on button click in the same activity

From Dev

How to create multiple admin dashboard template in wordpress

From Dev

How to create multiple admin dashboard template in wordpress

From Dev

How to Create Sub Menu under Product Menu in Opencart Admin

From Dev

Create new admin section in wordpress - for creating office-pages

From Dev

How do I add an arbitrary link to the WordPress Admin Menu?

From Dev

How to create a new page in prestashop admin panel?

From Dev

Adding Admin Menu Separators in WordPress

From Dev

How to create a image button menu programmatically?

From Dev

is it possible to create new button or menu item of application using applescript

From Dev

Create options menu in WordPress

From Dev

How to create customizer menu and create a field in my WordPress site?

From Dev

Asp Boilerplate,,, How to create New Menu in Menu bar?

From Dev

How to create new page in wordpress plugin?

From Dev

How to create new page in wordpress plugin?

From Dev

How do you create a basic Wordpress admin pointer?

From Dev

How do you create a basic Wordpress admin pointer?

From Dev

How to Create Wordpress Multisite user with network admin privleges

From Dev

Create menu from button?

From Dev

How to Create New Panels on Button Click?

From Dev

How to Create New Panels on Button Click?

From Dev

How to create WordPress widget using custom menu select

Related Related

  1. 1

    how to create tab menu in admin page wordpress

  2. 2

    How to create new wordpress admin user from FTP

  3. 3

    How to make wordpress admin menu collapsed by default?

  4. 4

    How to add an extra menu to wordpress admin screen

  5. 5

    How to hide admin menu generate by plugins in wordpress

  6. 6

    Add Menu in WordPress Admin

  7. 7

    Add Menu in WordPress Admin

  8. 8

    create a new menu option menu on button click in the same activity

  9. 9

    How to create multiple admin dashboard template in wordpress

  10. 10

    How to create multiple admin dashboard template in wordpress

  11. 11

    How to Create Sub Menu under Product Menu in Opencart Admin

  12. 12

    Create new admin section in wordpress - for creating office-pages

  13. 13

    How do I add an arbitrary link to the WordPress Admin Menu?

  14. 14

    How to create a new page in prestashop admin panel?

  15. 15

    Adding Admin Menu Separators in WordPress

  16. 16

    How to create a image button menu programmatically?

  17. 17

    is it possible to create new button or menu item of application using applescript

  18. 18

    Create options menu in WordPress

  19. 19

    How to create customizer menu and create a field in my WordPress site?

  20. 20

    Asp Boilerplate,,, How to create New Menu in Menu bar?

  21. 21

    How to create new page in wordpress plugin?

  22. 22

    How to create new page in wordpress plugin?

  23. 23

    How do you create a basic Wordpress admin pointer?

  24. 24

    How do you create a basic Wordpress admin pointer?

  25. 25

    How to Create Wordpress Multisite user with network admin privleges

  26. 26

    Create menu from button?

  27. 27

    How to Create New Panels on Button Click?

  28. 28

    How to Create New Panels on Button Click?

  29. 29

    How to create WordPress widget using custom menu select

HotTag

Archive