How to Hide the "Landing Page" Admin Menu

function plt_hide_landing_page_wp_menus() {
	//Hide the "Landing Page" menu.
	remove_menu_page('wpsm_lp');
}

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

Where do I put this code?