can we add external react code page in rankmath sitemap

#432079
  • Resolved Rahat Yasmin
    Rank Math free

    i have some pages outside wordpress which are not submitted in sitemap. so i want to add this manually in wordpress sitemap. so can we will do this

Viewing 1 replies (of 1 total)
  • Hello,

    Thank you for contacting Rank Math support today and bringing your concern to our attention.

    You may need to make use of our filter to add a custom URL to the sitemap. Please refer to the code below:

    /**
     Filter to add extra URLs to the XML sitemap by type.
     *
     Only runs for the first page, not on all.
     *
     @param string $content String content to add, defaults to empty.
     */
    add_action( 'rank_math/sitemap/{$type}_content', function() {
      return '<url>
        <loc>https://rankmath.com/some-custom-url/</loc>
        <lastmod>2020-06-10T20:20:20+00:00</lastmod>
      </url>';
    });

    Replace {$type} with either post or page depending on if you want the URL to be included in the post or page sitemap – respectively.

    You can add the filter by following this guide:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Let us know how that goes. Looking forward to helping you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 1 replies (of 1 total)

The ticket ‘can we add external react code page in rankmath sitemap’ is closed to new replies.