How to Hide the "WOLF Bulk Editor" Admin Menu

function plt_hide_bulk_editor_menus() {
	//Hide the "WOLF Bulk Editor" menu.
	remove_menu_page('wpbe');
}

add_action('admin_menu', 'plt_hide_bulk_editor_menus', 100);

Where do I put this code?