Plugin Directory

Changeset 2084368


Ignore:
Timestamp:
05/09/2019 08:36:13 AM (7 years ago)
Author:
db0112358
Message:

add postin argument to shortcodes

Location:
content-repeater/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • content-repeater/trunk/content-repeater.php

    r2079539 r2084368  
    33 * Plugin Name: Content Repeater
    44 * Description: Quickly set up custom content like Testimonials, Coupons, Products, Flipboxes, Portals, Portfolios, Before & Afters, etc. and display it in interesting ways: Ajax Reload, Masonry, Isotope, Slick Slider, Single Row.
    5  * Version: 1.0.11
     5 * Version: 1.0.12
    66 * Author: Denis Buka
    77 * Text Domain: content-repeater
  • content-repeater/trunk/includes/functions.php

    r2045559 r2084368  
    282282        'cat' => 0,
    283283        'post__not_in' => 0,
     284        'post__in' => '',
    284285        'numberposts' => -1,
    285286        'post_status' => 'publish',
     
    289290    if($atts['post__not_in'])
    290291        $atts['post__not_in'] = explode(',', $atts['post__not_in']);   
     292    if($atts['post__in'])
     293        $atts['post__in'] = explode(',', $atts['post__in']);   
    291294    if(trim($atts['cat']) != 0) {
    292295        $atts['tax_query'] = array(
  • content-repeater/trunk/readme.txt

    r2079539 r2084368  
    9696= 1.0.11 =
    9797fix meta boxes
     98= 1.0.12 =
     99add post__in argument to shortcodes
  • content-repeater/trunk/repeaters/slick-slider/slick-slider.php

    r2061120 r2084368  
    193193        } else {
    194194            $value = 'dots: true,
     195arrows: true,
    195196autoplay: true,
    196197autoplaySpeed: 7000,
Note: See TracChangeset for help on using the changeset viewer.