Tips on Customizing Boost your Website Monetization with Premium Advertising – Actirise

How to Hide the "Actirise 1" Admin Menu

function plt_hide_actirise_menus() {
	//Hide the "Actirise 1" menu.
	remove_menu_page('actirise-settings');
}

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

Where do I put this code?

How to Hide the "Actirise" Meta Box

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

	//Hide the "Actirise" meta box.
	remove_meta_box('actirise-ad-control', $screen->id, 'side');
}

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