Tips on Customizing Kau-Boy's Comment Notification

How to Hide the "Comment Notification" Admin Menu

function plt_hide_kau_boys_comment_notification_menus() {
	//Hide the "Settings → Comment Notification" menu.
	remove_submenu_page('options-general.php', 'kau-boys-comment-notification/comment-notification.php');
}

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

Where do I put this code?

How to Hide the "Comment Notification RSS Feed" Dashboard Widget

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

	//Remove the "Comment Notification RSS Feed" widget.
	remove_meta_box('comment_notification_dashboard_widget', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_kau_boys_comment_notification_dashboard_widgets', 20);