How to Hide the "pymSEO" Admin Menu

function plt_hide_pymseo_menus() {
	//Hide the "pymSEO" menu.
	remove_menu_page('pymseo');
}

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

Where do I put this code?