Plugin Directory

Changeset 2550897


Ignore:
Timestamp:
06/19/2021 06:44:15 PM (5 years ago)
Author:
speedien
Message:

v1.0.5

Location:
speedien
Files:
3 edited
18 copied

Legend:

Unmodified
Added
Removed
  • speedien/tags/1.0.5/readme.txt

    r2547636 r2550897  
    55Tested up to: 5.7
    66Requires PHP: 5.6
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    137137== Changelog ==
    138138
     139= 1.0.5 - 19 Jun, 2021 =
     140- Improved 404 and error handling
     141- Minor bug fixes
     142
    139143= 1.0.4 - 14 Jun, 2021 =
    140144- Improved javascript optimization
  • speedien/tags/1.0.5/speedien.php

    r2547636 r2550897  
    77 * Text Domain:     speedien
    88 * Domain Path:     /
    9  * Version:         1.0.4
     9 * Version:         1.0.5
    1010 */
    1111
  • speedien/tags/1.0.5/speedien_cache.php

    r2547636 r2550897  
    55    $bypass_cache = 0;
    66
    7     $speedien_cache_exclusions = array('wp-login.php','wp-cron.php','wc-api','wp-json','my-account','cart','checkout','amp','feed','xmlrpc');
     7    $speedien_cache_exclusions = array('wp-login.php','wp-cron.php','wp-admin','wc-api','wp-json','my-account','cart','checkout','amp','feed','page','tag','search','xmlrpc');
    88
    99    foreach($speedien_cache_exclusions as $slug)
     
    1616
    1717    if ( defined( 'WP_CLI' ) && WP_CLI ) {
     18        $bypass_cache = 1;
     19    }
     20
     21    if ( is_404() ) {
    1822        $bypass_cache = 1;
    1923    }
  • speedien/tags/1.0.5/trunk/readme.txt

    r2550896 r2550897  
    55Tested up to: 5.7
    66Requires PHP: 5.6
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    137137== Changelog ==
    138138
     139= 1.0.5 - 19 Jun, 2021 =
     140- Improved 404 and error handling
     141- Minor bug fixes
     142
    139143= 1.0.4 - 14 Jun, 2021 =
    140144- Improved javascript optimization
  • speedien/tags/1.0.5/trunk/speedien.php

    r2550896 r2550897  
    77 * Text Domain:     speedien
    88 * Domain Path:     /
    9  * Version:         1.0.4
     9 * Version:         1.0.5
    1010 */
    1111
  • speedien/tags/1.0.5/trunk/speedien_cache.php

    r2550896 r2550897  
    55    $bypass_cache = 0;
    66
    7     $speedien_cache_exclusions = array('wp-login.php','wp-cron.php','wc-api','wp-json','my-account','cart','checkout','amp','feed','xmlrpc');
     7    $speedien_cache_exclusions = array('wp-login.php','wp-cron.php','wp-admin','wc-api','wp-json','my-account','cart','checkout','amp','feed','page','tag','search','xmlrpc');
    88
    99    foreach($speedien_cache_exclusions as $slug)
     
    1616
    1717    if ( defined( 'WP_CLI' ) && WP_CLI ) {
     18        $bypass_cache = 1;
     19    }
     20
     21    if ( is_404() ) {
    1822        $bypass_cache = 1;
    1923    }
  • speedien/trunk/readme.txt

    r2547636 r2550897  
    55Tested up to: 5.7
    66Requires PHP: 5.6
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    137137== Changelog ==
    138138
     139= 1.0.5 - 19 Jun, 2021 =
     140- Improved 404 and error handling
     141- Minor bug fixes
     142
    139143= 1.0.4 - 14 Jun, 2021 =
    140144- Improved javascript optimization
  • speedien/trunk/speedien.php

    r2547636 r2550897  
    77 * Text Domain:     speedien
    88 * Domain Path:     /
    9  * Version:         1.0.4
     9 * Version:         1.0.5
    1010 */
    1111
  • speedien/trunk/speedien_cache.php

    r2547636 r2550897  
    55    $bypass_cache = 0;
    66
    7     $speedien_cache_exclusions = array('wp-login.php','wp-cron.php','wc-api','wp-json','my-account','cart','checkout','amp','feed','xmlrpc');
     7    $speedien_cache_exclusions = array('wp-login.php','wp-cron.php','wp-admin','wc-api','wp-json','my-account','cart','checkout','amp','feed','page','tag','search','xmlrpc');
    88
    99    foreach($speedien_cache_exclusions as $slug)
     
    1616
    1717    if ( defined( 'WP_CLI' ) && WP_CLI ) {
     18        $bypass_cache = 1;
     19    }
     20
     21    if ( is_404() ) {
    1822        $bypass_cache = 1;
    1923    }
Note: See TracChangeset for help on using the changeset viewer.