How to Hide Affiliate Booster - Pros & Cons, Notice, and CTA Blocks for Affiliates Admin Menus

function plt_hide_affiliatebooster_blocks_menus() {
	//Hide the "Settings → Enable/Disable Affiliate Booster Blocks" menu.
	remove_submenu_page('options-general.php', 'affiliate_booster_blocks');
	//Hide the "Affiliate Booster" menu.
	remove_menu_page('affiliate_booster');
}

add_action('admin_menu', 'plt_hide_affiliatebooster_blocks_menus', 51);

Where do I put this code?