How to Hide the "Auto Load Next Post" Admin Menu

function plt_hide_auto_load_next_post_menus() {
	//Hide the "Settings → Auto Load Next Post" menu.
	remove_submenu_page('options-general.php', 'auto-load-next-post-settings');
}

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

Where do I put this code?