Anyone know how to hide or remove customization menu in wordpress?
The link menu seen in
OPTIONS:Widgets Menus Theme Options
and
Appearance
-Theme
-Widgets
-Menus
-Theme Option
-Editor
Thank you
Anyone know how to hide or remove customization menu in wordpress?
The link menu seen in
OPTIONS:Widgets Menus Theme Options
and
Appearance
-Theme
-Widgets
-Menus
-Theme Option
-Editor
Thank you
Thats not a default wordpress menu, your theme adds that using add_theme_page()
function.
Just remove ( or comment out //
, so in future you can enable it again ) that from functions.php
file to remove the menu completely.
Update –
There’s another (More Efficient) way is using WordPress Function – remove menu page()
– @Wyck