Tips on Customizing Webyapp: RSS News Grid

How to Hide Webyapp: RSS News Grid Admin Menus

function plt_hide_webyapp_rss_news_grid_menus() {
	//Hide "RSS News Grid".
	remove_menu_page('edit.php?post_type=webyapp_grid');
	//Hide "RSS News Grid → All Grids".
	remove_submenu_page('edit.php?post_type=webyapp_grid', 'edit.php?post_type=webyapp_grid');
	//Hide "RSS News Grid → Add Post".
	remove_submenu_page('edit.php?post_type=webyapp_grid', 'post-new.php?post_type=webyapp_grid');
	//Hide "RSS News Grid → Contact Us".
	remove_submenu_page('edit.php?post_type=webyapp_grid', 'webyapp-rss-news-grid-contact');
	//Hide "RSS News Grid → Upgrade".
	remove_submenu_page('edit.php?post_type=webyapp_grid', 'webyapp-rss-news-grid-pricing');
}

add_action('admin_menu', 'plt_hide_webyapp_rss_news_grid_menus', 1000000000);

Where do I put this code?

How to Hide Webyapp: RSS News Grid Meta Boxes

function plt_hide_webyapp_rss_news_grid_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "⚙️ Main Configuration" meta box.
	remove_meta_box('webyapp_cfg', $screen->id, 'normal');
	//Hide the "🎨 Visual Design  Typography" meta box.
	remove_meta_box('webyapp_design', $screen->id, 'normal');
	//Hide the "📝 Shortcode" meta box.
	remove_meta_box('webyapp_shortcode_box', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_webyapp_rss_news_grid_metaboxes', 20);