How to Hide the "Related Posts" Admin Menu

function plt_hide_zyonix_related_posts_menus() {
	//Hide the "Settings → Related Posts" menu.
	remove_submenu_page('options-general.php', 'zyonrp_related_posts');
}

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

Where do I put this code?