WordPress.org

Plugin Directory

Changeset 2165718


Ignore:
Timestamp:
09/30/2019 11:12:00 AM (7 weeks ago)
Author:
ThemeZee
Message:

released version 1.0.2 to fix two minor bugs

Location:
themezee-magazine-blocks
Files:
90 added
4 edited

Legend:

Unmodified
Added
Removed
  • themezee-magazine-blocks/trunk/includes/class-themezee-magazine-blocks-cache.php

    r2140661 r2165718  
    5252            'post__in'            => $post_ids,
    5353            'posts_per_page'      => absint( $attributes['numberOfPosts'] ),
     54            'order'               => esc_attr( $attributes['order'] ),
     55            'orderby'             => esc_attr( $attributes['orderBy'] ),
    5456            'ignore_sticky_posts' => true,
    5557            'no_found_rows'       => true,
  • themezee-magazine-blocks/trunk/includes/class-themezee-magazine-blocks-template.php

    r2140661 r2165718  
    341341     */
    342342    static function get_post_excerpt( $attributes ) {
    343         $post = get_post( $post );
     343        $post = get_post();
    344344
    345345        if ( empty( $post ) ) {
  • themezee-magazine-blocks/trunk/readme.txt

    r2146156 r2165718  
    66Requires at least: 5.0
    77Tested up to: 5.2.3
    8 Stable tag: 1.0.1
     8Stable tag: 1.0.2
    99License: GPLv2 or later
    1010
     
    5151== Changelog ==
    5252
     53= 1.0.2 =
     54
     55* fixed PHP warning for undefined post variable
     56* fixed order of posts for cached database queries
     57
    5358= 1.0.1 =
    5459
  • themezee-magazine-blocks/trunk/themezee-magazine-blocks.php

    r2146156 r2165718  
    66Author: ThemeZee
    77Author URI: https://themezee.com/
    8 Version: 1.0.1
     8Version: 1.0.2
    99Text Domain: themezee-magazine-blocks
    1010Domain Path: /languages/
     
    5656    static function constants() {
    5757        // Define Version Number.
    58         define( 'THEMEZEE_MAGAZINE_BLOCKS_VERSION', '1.0.1' );
     58        define( 'THEMEZEE_MAGAZINE_BLOCKS_VERSION', '1.0.2' );
    5959
    6060        // Plugin Folder Path.
Note: See TracChangeset for help on using the changeset viewer.