-
Home
-
Mobile Native Android App Maker for WordPress
- Tips
How to Hide the "WiziApp" Admin Menu
function plt_hide_wiziapp_create_your_own_native_iphone_app_menus() {
remove_menu_page('wiziapp-plugin-settings');
}
add_action('admin_menu', 'plt_hide_wiziapp_create_your_own_native_iphone_app_menus', 11);
Where do I put this code?
How to Hide the "Wiziapp" Meta Box
function plt_hide_wiziapp_create_your_own_native_iphone_app_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
remove_meta_box('wiziapp_plugin_setting_box', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_wiziapp_create_your_own_native_iphone_app_metaboxes', 20);