How to Hide the "Page Exporter" Admin Menu

function plt_hide_luckyfish_page_exporter_menus() {
	//Hide the "Page Exporter" menu.
	remove_menu_page('luckyfish-page-exporter');
}

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

Where do I put this code?