Tips on Customizing NOTICE BOARD

How to Hide Notice Board Admin Menus

function plt_hide_notice_board_menus() {
	//Hide the "Notices" menu.
	remove_menu_page('edit.php?post_type=notice');
	//Hide the "Notices → Notices" menu.
	remove_submenu_page('edit.php?post_type=notice', 'edit.php?post_type=notice');
	//Hide the "Notices → Add New Notice" menu.
	remove_submenu_page('edit.php?post_type=notice', 'post-new.php?post_type=notice');
}

add_action('admin_menu', 'plt_hide_notice_board_menus', 15);

Where do I put this code?

How to Hide the "Notice Link" Meta Box

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

	//Hide the "Notice Link" meta box.
	remove_meta_box('msnb_notice_meta', $screen->id, 'normal');
}

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