Plugin Directory

Changeset 2759601


Ignore:
Timestamp:
07/21/2022 06:41:46 AM (4 years ago)
Author:
madebycinza
Message:

cinza grid v1.0.5

Location:
cinza-grid
Files:
22 added
6 edited

Legend:

Unmodified
Added
Removed
  • cinza-grid/trunk/cinza-grid.php

    r2756713 r2759601  
    55 * Plugin URI:        https://cinza.io/plugin/grid
    66 * Description:       A minimal grid plugin.
    7  * Version:           1.0.4
     7 * Version:           1.0.5
    88 * Requires at least: 5.2
    99 * Requires PHP:      7.2
  • cinza-grid/trunk/includes/backend-cpts.php

    r2756655 r2759601  
    485485                        </tr>
    486486                        <tr>
     487                            <td><code>%content%</code></td>
     488                            <td><em>Returns post content</em></td>
     489                        </tr>
     490                        <tr>
    487491                            <td><code>%date%</code></td>
    488492                            <td><em>Returns date in the default format</em></td>
  • cinza-grid/trunk/includes/backend-shortcodes.php

    r2756713 r2759601  
    155155            itemSelector: '.cinza-grid-item',
    156156            layoutMode: 'fitRows',
     157            transitionDuration: '0.4s',
    157158            getSortData: {".$sorts_data."}
    158159        });
     
    398399                '%img%',
    399400                '%imgurl%',
     401                '%content%',
    400402            );
    401403           
     
    406408                get_the_post_thumbnail($post->ID),
    407409                get_the_post_thumbnail_url($post->ID),
     410                get_post_field('post_content', $post->ID),
    408411            );
    409412           
  • cinza-grid/trunk/readme.txt

    r2756713 r2759601  
    55Tested up to: 6.0
    66Requires PHP: 7.2
    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
     
    2323== Changelog ==
    2424
     25= 1.0.5 =
     26*Release Date - 20th July, 2022*
     27
     28* Added custom skin meta for content
     29* Set transition duration to 0.4 seconds
     30* Style fixes
     31
    2532= 1.0.4 =
    2633*Release Date - 15th July, 2022*
    2734
    28 - Fixed dynamic frontend style
    29 - Fixed JavaScript console errors
    30 - Fixed filter tags for grid items
    31 - Fixed filter_meta_replace and filter_tax_replace
    32 - Removed duplicated Metafizzy script
    33 - Removed skin debug strings for WP Queries
     35* Fixed dynamic frontend style
     36* Fixed JavaScript console errors
     37* Fixed filter tags for grid items
     38* Fixed filter_meta_replace and filter_tax_replace
     39* Removed duplicated Metafizzy script
     40* Removed skin debug strings for WP Queries
    3441
    3542= 1.0.3 =
Note: See TracChangeset for help on using the changeset viewer.