Changeset 1026247
- Timestamp:
- 11/15/2014 04:47:36 PM (11 years ago)
- Location:
- google-sitemap-generator/tags/4.0.8
- Files:
-
- 4 edited
- 1 copied
-
. (copied) (copied from google-sitemap-generator/tags/4.0.7.1)
-
documentation.txt (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
sitemap-builder.php (modified) (1 diff)
-
sitemap.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
google-sitemap-generator/tags/4.0.8/documentation.txt
r977341 r1026247 309 309 2014-09-02 4.0.7.1Added icon for the new WP Add-Plugin page 310 310 Changed "Tested up to" to 4.0 311 2014-11-15 4.0.8 Fixed bug with excluded categories, thanks to Claus Schöffel! 312 311 313 312 314 -
google-sitemap-generator/tags/4.0.8/readme.txt
r977341 r1026247 4 4 Tags: seo, google, sitemaps, google sitemaps, yahoo, msn, ask, live, xml sitemap, xml 5 5 Requires at least: 3.3 6 Tested up to: 4. 06 Tested up to: 4.1 7 7 Stable tag: 4.0.7.1 8 8 License: GPLv2 -
google-sitemap-generator/tags/4.0.8/sitemap-builder.php
r925789 r1026247 91 91 $exCatSQL = ""; 92 92 if(count($excludedCategoryIDs) > 0) { 93 $exCatSQL = "AND ( p.ID NOT IN ( SELECT object_id FROM {$wpdb->term_relationships} WHERE term_taxonomy_id IN ( " . implode(",", $excludedCategoryIDs) . ")))";93 $exCatSQL = "AND ( p.ID NOT IN ( SELECT object_id FROM {$wpdb->term_relationships} WHERE term_taxonomy_id IN ( SELECT term_taxonomy_id FROM {$wpdb->term_taxonomy} WHERE term_id IN ( " . implode(",", $excludedCategoryIDs) . "))))"; 94 94 } 95 95 -
google-sitemap-generator/tags/4.0.8/sitemap.php
r977341 r1026247 19 19 Plugin URI: http://www.arnebrachhold.de/redir/sitemap-home/ 20 20 Description: This plugin will generate a special XML sitemap which will help search engines like Google, Yahoo, Bing and Ask.com to better index your blog. 21 Version: 4.0. 7.121 Version: 4.0.8 22 22 Author: Arne Brachhold 23 23 Author URI: http://www.arnebrachhold.de/ … … 46 46 */ 47 47 48 define("SM_SUPPORTFEED_URL","http://plugin-info.arnebrachhold.de/support/support_ 3.xml");48 define("SM_SUPPORTFEED_URL","http://plugin-info.arnebrachhold.de/support/support_4.xml"); 49 49 50 50 /**
Note: See TracChangeset
for help on using the changeset viewer.