Tips on Customizing Publora

How to Hide the "Publora" Admin Menu

function plt_hide_publora_menus() {
	//Hide the "Settings → Publora" menu.
	remove_submenu_page('options-general.php', 'publora');
}

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

Where do I put this code?

How to Hide the "Publora" Meta Box

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

	//Hide the "Publora" meta box.
	remove_meta_box('publora', $screen->id, 'side');
}

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