-
Home
-
Custom Block Builder – Lazy Blocks
- Tips
function plt_hide_lazy_blocks_menus() {
remove_menu_page('edit.php?post_type=lazyblocks');
remove_submenu_page('edit.php?post_type=lazyblocks', 'edit.php?post_type=lazyblocks');
remove_submenu_page('edit.php?post_type=lazyblocks', 'post-new.php?post_type=lazyblocks');
remove_submenu_page('edit.php?post_type=lazyblocks', 'edit.php?post_type=lazyblocks_templates');
remove_submenu_page('edit.php?post_type=lazyblocks', 'lazyblocks_tools');
remove_submenu_page('edit.php?post_type=lazyblocks', 'https://www.lazyblocks.com/docs/overview/?utm_source=plugin&utm_medium=admin_menu&utm_campaign=docs&utm_content=3.8.3');
remove_submenu_page('edit.php?post_type=lazyblocks', 'https://www.lazyblocks.com/pro/?utm_source=plugin&utm_medium=admin_menu&utm_campaign=go_pro&utm_content=3.8.3');
}
add_action('admin_menu', 'plt_hide_lazy_blocks_menus', 13);
Where do I put this code?