How to Hide the "WP EXtra" Admin Menu

function plt_hide_wp_extra_menus() {
	//Hide the "WP EXtra" menu.
	remove_menu_page('wp-extra');
}

add_action('admin_menu', 'plt_hide_wp_extra_menus', 21);

Where do I put this code?