How to Hide the "CWLP Settings" Admin Menu

function plt_hide_creative_wp_login_page_menus() {
	//Hide the "CWLP Settings" menu.
	remove_menu_page('cwlp-settings');
}

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

Where do I put this code?