How to Hide the "Smart Popups" Admin Menu

function plt_hide_bilohash_smart_popups_menus() {
	//Hide the "Smart Popups" menu.
	remove_menu_page('bilohash-smart-popups');
}

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

Where do I put this code?