Answered by
Oliver Hall
In WordPress, there are a few ways to hide a page from your sitemap. This is typically done using SEO plugins such as Yoast SEO or All in One SEO Pack. The general process involves marking a page as 'noindex' which then removes it from the sitemap.
Using Yoast SEO:
<!-- This is typically what happens behind the scenes when you select 'No' --> <meta name="robots" content="noindex">
Using All in One SEO Pack:
<!-- This is typically what happens behind the scenes when you check 'NOINDEX' --> <meta name="robots" content="noindex">
Remember, setting a page to 'noindex' makes certain that search engines won't index the page and it won't appear in search results. This also means that this page will be excluded from the sitemap generated by your SEO plugin.