Changeset 580375
- Timestamp:
- 08/01/2012 06:53:48 PM (14 years ago)
- Location:
- google-xml-sitemap/trunk
- Files:
-
- 2 edited
-
google-xml-sitemap.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
google-xml-sitemap/trunk/google-xml-sitemap.php
r578854 r580375 12 12 * Description: Sitemaps are a way to tell Google about pages on your site we might not otherwise discover. In its simplest terms, a XML Sitemap—usually called Sitemap, with a capital S—is a list of the pages on your website. Creating and submitting a Sitemap helps make sure that Google knows about all the pages on your site, including URLs that may not be discoverable by Google's normal crawling process. 13 13 * Author: Cor van Noorloos 14 * Version: 0.1. 014 * Version: 0.1.1 15 15 * Author URI: http://corvannoorloos.com/ 16 16 */ … … 20 20 * Google XML Sitemap 21 21 * 22 * @since 0.1. 022 * @since 0.1.1 23 23 * 24 24 * @global type $wpdb … … 37 37 ORDER BY post_type DESC, post_modified DESC 38 38 LIMIT 50000" ); 39 header( "HTTP/1.1 200 OK" ); 39 40 header( 'X-Robots-Tag: noindex, follow', true ); 40 41 header( 'Content-Type: text/xml' ); -
google-xml-sitemap/trunk/readme.txt
r579342 r580375 20 20 1. Unzip and upload `google-xml-sitemap` folder to the `/wp-content/plugins/` directory 21 21 1. Activate the plugin through the 'Plugins' menu in WordPress 22 1. Visit `http://yourdomain.com/sitemap.xml` 22 1. Visit `http://yourdomain.tld/sitemap.xml` 23 24 == Changelog == 25 26 = 0.1.0 = 27 Initial release 28 29 = 0.1.1 = 30 Set HTTP Headers. Some occasional errors when submitting to Google Webmaster Tools. 31 32 == Upgrade Notice == 33 34 = 0.1.1 = 35 Set HTTP Headers. Some occasional errors when submitting to Google Webmaster Tools.
Note: See TracChangeset
for help on using the changeset viewer.