How to Hide the "Blocked Ads Notifier Lite" Admin Menu

function plt_hide_blocked_ads_notifier_lite_menus() {
	//Hide the "Blocked Ads Notifier Lite" menu.
	remove_menu_page('banl_options');
}

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

Where do I put this code?