How to Hide the "Welcome Ad" Admin Menu

function plt_hide_welcome_ad_menus() {
	//Hide the "Welcome Ad" menu.
	remove_menu_page('welcome-ad');
}

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

Where do I put this code?