Hello, everybody.
There is a way to include into the sitemaps only the first page of every thread instead the whole pagination?
thank you!Code:thread-page1 thread-page2 thread-page3 thread-page4 thread-page5
This is a discussion on Don't include pagination into sitemaps within the General Discussion forums, part of the vBSEO Google/Yahoo Sitemap category; Hello, everybody. There is a way to include into the sitemaps only the first page of every thread instead the ...
Hello, everybody.
There is a way to include into the sitemaps only the first page of every thread instead the whole pagination?
thank you!Code:thread-page1 thread-page2 thread-page3 thread-page4 thread-page5
Hello,
vBSEO Sitemap Generator doesn't have a special option for that, but you can modify vbseo_sitemap_functions.php file:
FIND:
REPLACE WITH:PHP Code:for($p=1; $p<=$totalpages; $p++)
PHP Code:for($p=1; $p<=1; $p++)
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Thank you so much, Oleg!