How to Hide the "Simple Banner" Admin Menu

function plt_hide_simple_banner_menus() {
	//Hide the "Simple Banner" menu.
	remove_menu_page('simple-banner-settings');
}

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

Where do I put this code?