Changeset 2186618
- Timestamp:
- 11/06/2019 02:25:34 AM (6 years ago)
- Location:
- wp-criticalcss/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
lib/WP/CriticalCSS.php (modified) (1 diff)
-
lib/WP/CriticalCSS/Request.php (modified) (1 diff)
-
wp-criticalcss.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-criticalcss/trunk/README.txt
r2175457 r2186618 67 67 68 68 == Changelog == 69 70 ### 0.7.7 ### 71 72 * Bug: Fix edge case with custom post types rewrite rules by putting them before the generic rules 69 73 70 74 ### 0.7.6 ### -
wp-criticalcss/trunk/lib/WP/CriticalCSS.php
r2175457 r2186618 39 39 * 40 40 */ 41 const VERSION = '0.7. 6';41 const VERSION = '0.7.7'; 42 42 43 43 /** -
wp-criticalcss/trunk/lib/WP/CriticalCSS/Request.php
r2175457 r2186618 117 117 } 118 118 if ( $this->wp_rewrite->use_verbose_page_rules ) { 119 $rules = array_merge( $root_rewrite, $search_rewrite, $page_rewrite, $post_rewrite, call_user_func_array( 'array_merge', $cpt_rules ), $rules );119 $rules = array_merge( call_user_func_array( 'array_merge', $cpt_rules ),$root_rewrite, $search_rewrite, $page_rewrite, $post_rewrite, $rules ); 120 120 } else { 121 $rules = array_merge( $root_rewrite, $search_rewrite, $post_rewrite, $page_rewrite, call_user_func_array( 'array_merge', $cpt_rules ), $rules );121 $rules = array_merge( call_user_func_array( 'array_merge', $cpt_rules ), $root_rewrite, $search_rewrite, $post_rewrite, $page_rewrite, $rules ); 122 122 } 123 123 -
wp-criticalcss/trunk/wp-criticalcss.php
r2175457 r2186618 5 5 Plugin URI: https://github.com/pcfreak30/wp-criticalcss 6 6 Description: Use CriticalCSS.com web service to automatically create the required CSS for above the fold 7 Version: 0.7. 67 Version: 0.7.7 8 8 Author: Derrick Hammer 9 9 Author URI: https://www.derrickhammer.com
Note: See TracChangeset
for help on using the changeset viewer.