-2

Theme Options

How to remove the "Theme Options" button from the Wordpress Admin Bar.

Note that the path of the linked page is:

wp-admin/admin.php?page=mytheme-options

I have tried both remove_menu_page and remove_submenu_page functions.

ecg8
  • 1,362
  • 1
  • 12
  • 16
zero
  • 41
  • 5

1 Answers1

0

Try to increse or decrease the action priority. See add_action#parameters:

$priority
(int) (Optional) Used to specify the order in which the functions associated with a particular action are executed. Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action.

Default value: 10

Community
  • 1
  • 1
Humba
  • 128
  • 1
  • 10