How to Hide the "Dummy Content" Admin Menu

function plt_hide_wp_dummy_content_menus() {
	//Hide the "Settings → Dummy Content" menu.
	remove_submenu_page('options-general.php', 'wp-dummy-content/wp-dummy-content.php');
}

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

Where do I put this code?