How to Hide the "Mark Older Posts" Admin Menu

function plt_hide_ada2go_mark_your_old_articles_menus() {
	//Hide the "Settings → Mark Older Posts" menu.
	remove_submenu_page('options-general.php', 'a2g_mop_settings');
}

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

Where do I put this code?