How to Hide the "Bitcoin Paywall" Admin Menu

function plt_hide_bitcoin_paywall_menus() {
	//Hide the "Settings → Bitcoin Paywall" menu.
	remove_submenu_page('options-general.php', 'bitcoin_paywall');
}

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

Where do I put this code?