-
Home
-
Post Saint: ChatGPT, GPT4, DALL-E, Stable Diffusion, Pexels, Dezgo AI Text & Image Generator
- Tips
How to Hide Post Saint: ChatGPT, GPT4, DALL-E, Stable Diffusion, Pexels, Dezgo AI Text & Image Generator Admin Menus
function plt_hide_post_saint_menus() {
//Hide "Post Saint".
remove_menu_page('post-saint/images-new.php');
//Hide "Post Saint → Generate Images".
remove_submenu_page('post-saint/images-new.php', 'post-saint/images-new.php');
//Hide "Post Saint → Settings".
remove_submenu_page('post-saint/images-new.php', 'post-saint/settings.php');
//Hide "Post Saint → Logs".
remove_submenu_page('post-saint/images-new.php', 'post-saint/logs.php');
//Hide "Post Saint → Support".
remove_submenu_page('post-saint/images-new.php', 'post-saint/support.php');
}
add_action('admin_menu', 'plt_hide_post_saint_menus', 11);
Where do I put this code?
How to Hide the "Post Saint Post Generator" Meta Box
function plt_hide_post_saint_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Post Saint Post Generator" meta box.
remove_meta_box('postsaint_box_id', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_post_saint_metaboxes', 20);