How to Hide the "Post With Featured Image Setting" Admin Menu

function plt_hide_post_list_with_featured_image_menus() {
	//Hide the "Settings → Post With Featured Image Setting" menu.
	remove_submenu_page('options-general.php', 'dp-post-with-image');
}

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

Where do I put this code?