How to Hide the "Reward for Comment" Admin Menu

function plt_hide_reward_for_comment_menus() {
	//Hide the "Settings → Reward for Comment" menu.
	remove_submenu_page('options-general.php', 'reward-for-comment');
}

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

Where do I put this code?