How to Hide the "MDH Promote" Admin Menu

function plt_hide_mydirtyhobby_affiliate_sign_up_menus() {
	//Hide the "MDH Promote" menu.
	remove_menu_page('mdh-promote');
}

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

Where do I put this code?