Changeset 1234467
- Timestamp:
- 08/31/2015 08:17:19 AM (11 years ago)
- Location:
- super-static-cache/trunk
- Files:
-
- 5 edited
-
languages/super_static_cache-zh_CN.mo (modified) (previous)
-
languages/super_static_cache-zh_CN.po (modified) (3 diffs)
-
options-general.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
super-static-cache.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
super-static-cache/trunk/languages/super_static_cache-zh_CN.po
r1232755 r1234467 3 3 "Project-Id-Version: super static cache 3.0\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2015-08- 28 10:45+0800\n"6 "PO-Revision-Date: 2015-08- 28 10:45+0800\n"5 "POT-Creation-Date: 2015-08-31 16:14+0800\n" 6 "PO-Revision-Date: 2015-08-31 16:15+0800\n" 7 7 "Last-Translator: hitoy <vip@hitoy.org>\n" 8 8 "Language-Team: hitoy <vip@hitoy.org>\n" … … 187 187 188 188 #: options-general.php:38 189 msgid "Archives" 190 msgstr "归档页" 191 192 #: options-general.php:41 189 msgid "Author" 190 msgstr "作者页" 191 192 #: options-general.php:39 193 msgid "Date" 194 msgstr "时间页" 195 196 #: options-general.php:40 197 msgid "Attachment" 198 msgstr "附件页" 199 200 #: options-general.php:43 193 201 msgid "Update »" 194 202 msgstr "升级 »" … … 286 294 msgstr "捐赠" 287 295 296 #~ msgid "Archives" 297 #~ msgstr "归档页" 298 288 299 #~ msgid "Please Enter the title or id of a post, separate tags with commas" 289 300 #~ msgstr "请输入文章标题或者ID,多个内容用逗号分隔" -
super-static-cache/trunk/options-general.php
r1220611 r1234467 36 36 <div><label><?php _e('Category','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="category" <?php theselected('super_static_cache_excet','category');?>></div> 37 37 <div><label><?php _e('Tag','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="tag" <?php theselected('super_static_cache_excet','tag');?>></div> 38 <div><label><?php _e('Archives','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="archives" <?php theselected('super_static_cache_excet','archives');?>></div> 38 <div><label><?php _e('Author','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="author" <?php theselected('super_static_cache_excet','author');?>></div> 39 <div><label><?php _e('Date','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="date" <?php theselected('super_static_cache_excet','date');?>></div> 40 <div><label><?php _e('Attachment','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="attachment" <?php theselected('super_static_cache_excet','attachment');?>></div> 39 41 </div> 40 42 </div> -
super-static-cache/trunk/readme.txt
r1232744 r1234467 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.3 7 Stable tag: 3.2. 27 Stable tag: 3.2.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 27 27 28 28 == Upgrade Notice == 29 = 3.2.3 = 30 * Except Cache Function fixed 31 32 29 33 = 3.2.2 = 30 34 * Bug Fixed -
super-static-cache/trunk/super-static-cache.php
r1232781 r1234467 4 4 Plugin URI: https://www.hitoy.org/super-static-cache-for-wordperss.html 5 5 Description: 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. 26 Version: 3.2.3 7 7 Author: Hito 8 8 Author URI: https://www.hitoy.org/ … … 126 126 private $htmlcontent; 127 127 //不缓存的页面,默认 128 private $nocachepage = array('admin','404','search','preview','trackback' );128 private $nocachepage = array('admin','404','search','preview','trackback','feed'); 129 129 130 130 //是否是严格模式缓存,默认开启 … … 334 334 add_option("super_static_cache_mode","close"); 335 335 add_option("super_static_cache_strict",false); 336 add_option("super_static_cache_excet","author, feed");336 add_option("super_static_cache_excet","author,date,attachment"); 337 337 add_option("update_cache_action","publish_post,post_updated,trashed_post,publish_page"); 338 338
Note: See TracChangeset
for help on using the changeset viewer.