Plugin Directory

Changeset 1235981


Ignore:
Timestamp:
09/02/2015 03:58:57 AM (11 years ago)
Author:
hitoy
Message:

update to 3.2.4

Location:
super-static-cache/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • super-static-cache/trunk/readme.txt

    r1234467 r1235981  
    55Requires at least: 3.0.1
    66Tested up to: 4.3
    7 Stable tag: 3.2.3
     7Stable tag: 3.2.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727
    2828== Upgrade Notice ==
     29= 3.2.4 =
     30* Bug Fixed
     31
    2932= 3.2.3 =
    3033* Except Cache Function fixed
    31 
    3234
    3335= 3.2.2 =
  • super-static-cache/trunk/super-static-cache.php

    r1234485 r1235981  
    44Plugin URI: https://www.hitoy.org/super-static-cache-for-wordperss.html
    55Description: Super Static Cache is an efficient WordPress caching engine which provides three cache mode. It can reduce the pressure of the database significantly that makes your website faster than ever.
    6 Version: 3.2.3
     6Version: 3.2.4
    77Author: Hito
    88Author URI: https://www.hitoy.org/
     
    2727    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    2828*/
    29 
    3029
    3130//获取当前页面类型
     
    4443    }else if(is_search()){
    4544        return 'search';
     45    }else if(is_home()){
     46        return 'home';
    4647    }else if(is_single()){
    4748        return 'single';
     49    }else if(is_page()){
     50        return 'page';
     51    }else if(is_author()){
     52        return 'author';
     53    }else if(is_attachment()){
     54        return 'attachment';
    4855    }else if(is_tag()){
    4956        return 'tag';
    5057    }else if(is_category()){
    5158        return 'category';
    52     }else if(is_page()){
    53         return 'page';
    54     }else if(is_home()){
    55         return 'home';
    56     }else if(is_archive()){
    57         return 'archive';
     59    }else if(is_paged()){
     60        return 'paged';
     61    }else if(is_date()){
     62        return 'date';
    5863    }
    5964    return 'notfound';
Note: See TracChangeset for help on using the changeset viewer.