You can add Sitemap on any posts, or pages using the shortcode [rsxh_sitemap] and it also generates an XML Sitemap which will be placed on site root d …
This WordPress Plugin has a really easy way to add a Sitemap for your pages. To show HTML Sitemap on any pages or posts, just use the shortcode [rsxh_sitemap]. You can also place in your templates. This will automatically generate a Sitemap for all pages, posts and custom post type (CPT) posts.
It also generates an XML sitemap which will be placed on your site’s root directory (file name sitemap.xml). XML sitemaps will help search engines like Google, Yahoo and Ask.com to better index your site.
[rsxh_sitemap post_types="page"]
[rsxh_sitemap post_types="page,posts,..."]
[rsxh_sitemap post_types="page" exclude_pages="3,10,..."]
[rsxh_sitemap exclude_post_and_custom_post_type_posts="15,18,..."]
really-simple-xml-and-html-sitemap
folder to the /wp-content/plugins/
directoryRSXH Sitemap Settings
tab from WordPress admin area<?php echo do_shortcode( '[rsxh_sitemap]' ); ?>
in your templates file.Yes. It will be placed in your site root directory (file name sitemap.xml). XML sitemaps will help search engines like Google, Yahoo and Ask.com to better index your site.
Yes. It works fine with the Custom Post Type (CPT)
Yes. It can. You have to use the following shortcode
[rsxh_sitemap post_types='page, post']
to display both the pages and posts[rsxh_sitemap post_types='page']
to display only the pages[rsxh_sitemap post_types="post"]
to display only the posts[rsxh_sitemap post_types='facilities']
or [wp_sitemap_page post_types='books']
Yes. It is. You have to use the following shortcode
[rsxh_sitemap post_types='page, post' exclude_pages='3,10,...']
to display both the pages and posts excluding specific pages[rsxh_sitemap post_types='page' exclude_pages='3,10,...']
to display only the pages excluding specific pages[rsxh_sitemap exclude_pages='3,10,...']
to display all pages, posts and custom post type (CPT) posts excluding specific pages[rsxh_sitemap exclude_post_and_custom_post_type_posts='15,18,...']
to display all pages, posts and custom post type (CPT) posts excluding specific posts and custom post type (CPT) posts[rsxh_sitemap post_types='post' exclude_post_and_custom_post_type_posts='15,18,...']
to display only the posts excluding specific posts[rsxh_sitemap post_types='facilities' exclude_post_and_custom_post_type_posts='15,18,...']
to display only defined post type posts excluding specific post type posts