How to Hide the "My Post Editor" Admin Menu

function plt_hide_my_post_editor_menus() {
	//Hide the "Settings → My Post Editor" menu.
	remove_submenu_page('options-general.php', 'my-post-editor.php');
}

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

Where do I put this code?