How to Hide the "Jobs Widget" Admin Menu

function plt_hide_jobswidget_menus() {
	//Hide the "Settings → Jobs Widget" menu.
	remove_submenu_page('options-general.php', 'jobs-widget/options.php');
}

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

Where do I put this code?