Changeset 2096748
- Timestamp:
- 05/28/2019 08:28:52 PM (7 years ago)
- Location:
- gecko-section/trunk
- Files:
-
- 2 edited
-
gecko-section.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gecko-section/trunk/gecko-section.php
r2072593 r2096748 4 4 * Plugin URI: https://github.com/gecko-designs/gecko-section 5 5 * Description: Section block for full row layouts in themes that support gutenberg full-width blocks. 6 * Version: 1.0. 36 * Version: 1.0.5 7 7 * Author: Gecko Designs 8 8 * Author URI: https://geckodesigns.com … … 49 49 ); 50 50 // If Post has block then enqueue script 51 add_ action( 'the_post', function($post){52 if(has_block( 'gecko/section', $ post )){51 add_filter( 'the_content', function($content){ 52 if(has_block( 'gecko/section', $content )){ 53 53 wp_enqueue_style('gecko-section'); 54 54 } 55 } ); 55 return $content; 56 }, 1 ); 56 57 // Initialize custom blocks 57 58 // Dynamically import blocks in blocks folder -
gecko-section/trunk/readme.txt
r2072593 r2096748 5 5 Requires at least: 5.0 6 6 Tested up to: 5.0.3 7 Stable tag: 1.0. 37 Stable tag: 1.0.5 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 23 23 24 24 == Changelog == 25 = 1.0.% = 26 * Enqueue Bug fix 27 = 1.0.4 = 28 * Bug fix 25 29 = 1.0.3 = 26 30 * Added contrast toggle … … 33 37 34 38 == Upgrade Notice == 39 = 1.0.5 = 40 * Bug fix 41 = 1.0.4 = 42 * Bug fix 35 43 = 1.0.3 = 36 44 * Added contrast toggle
Note: See TracChangeset
for help on using the changeset viewer.