How to Hide Genesis Promotion Box Admin Menus

function plt_hide_genesis_promotion_box_menus() {
	//Hide the "Promotions" menu.
	remove_menu_page('edit.php?post_type=promotion_post');
	//Hide the "Promotions → Promotions" menu.
	remove_submenu_page('edit.php?post_type=promotion_post', 'edit.php?post_type=promotion_post');
	//Hide the "Promotions → Add Post" menu.
	remove_submenu_page('edit.php?post_type=promotion_post', 'post-new.php?post_type=promotion_post');
}

add_action('admin_menu', 'plt_hide_genesis_promotion_box_menus', 15);

Where do I put this code?