How to Hide the "Remove Author,date & Entry-Meta" Admin Menu

function plt_hide_removehide_author_date_category_like_entry_meta_menus() {
	//Hide the "Settings → Remove Author,date & Entry-Meta" menu.
	remove_submenu_page('options-general.php', 'remove-a-d-c');
}

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

Where do I put this code?