How to Hide the "Actirise 1" Admin Menu

function plt_hide_actirise_menus() {
	//Hide the "Actirise 1" menu.
	remove_menu_page('actirise-settings');
}

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

Where do I put this code?