Tips on Customizing Web Push Notifications – Webpushr

How to Hide the "Webpushr" Admin Menu

function plt_hide_webpushr_web_push_notifications_menus() {
	//Hide the "Webpushr" menu.
	remove_menu_page('webpushr-setup');
}

add_action('admin_menu', 'plt_hide_webpushr_web_push_notifications_menus', 11);

Where do I put this code?

How to Hide the "Webpushr Notification" Meta Box

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

	//Hide the "Webpushr Notification" meta box.
	remove_meta_box('webpushr-metabox', $screen->id, 'side');
}

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