Plugin Directory

Changeset 1026247


Ignore:
Timestamp:
11/15/2014 04:47:36 PM (11 years ago)
Author:
arnee
Message:
  • Tagged as 4.0.8
Location:
google-sitemap-generator/tags/4.0.8
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • google-sitemap-generator/tags/4.0.8/documentation.txt

    r977341 r1026247  
    3093092014-09-02     4.0.7.1Added icon for the new WP Add-Plugin page
    310310                      Changed "Tested up to" to 4.0
     3112014-11-15     4.0.8  Fixed bug with excluded categories, thanks to Claus Schöffel!
     312
    311313
    312314
  • google-sitemap-generator/tags/4.0.8/readme.txt

    r977341 r1026247  
    44Tags: seo, google, sitemaps, google sitemaps, yahoo, msn, ask, live, xml sitemap, xml
    55Requires at least: 3.3
    6 Tested up to: 4.0
     6Tested up to: 4.1
    77Stable tag: 4.0.7.1
    88License: GPLv2
  • google-sitemap-generator/tags/4.0.8/sitemap-builder.php

    r925789 r1026247  
    9191            $exCatSQL = "";
    9292            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) . "))))";
    9494            }
    9595
  • google-sitemap-generator/tags/4.0.8/sitemap.php

    r977341 r1026247  
    1919 Plugin URI: http://www.arnebrachhold.de/redir/sitemap-home/
    2020 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.1
     21 Version: 4.0.8
    2222 Author: Arne Brachhold
    2323 Author URI: http://www.arnebrachhold.de/
     
    4646*/
    4747
    48 define("SM_SUPPORTFEED_URL","http://plugin-info.arnebrachhold.de/support/support_3.xml");
     48define("SM_SUPPORTFEED_URL","http://plugin-info.arnebrachhold.de/support/support_4.xml");
    4949
    5050/**
Note: See TracChangeset for help on using the changeset viewer.