How to Hide the "Submitted Posts" Admin Menu

function plt_hide_user_submitted_posts_menus() {
	//Hide the "Settings → Submitted Posts" menu.
	remove_submenu_page('options-general.php', 'user-submitted-posts');
}

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

Where do I put this code?