Support

Account

Home Forums General Issues Revolution Slider Reply To: Revolution Slider

  • revolution slider had this function : getPostsByCategory.
    with this query arg :
    $query = array(
    ‘order’=>$direction,
    ‘posts_per_page’=>$numPosts,
    ‘showposts’=>$numPosts,
    ‘post_type’=>$postTypes,
    );

    my post has a ACF date repeater field (thedates) and i need to sort with first date of each one .

    i tried to add this :
    ‘meta_key’ =>’thedates_0_thedate’,
    ‘orderby’ => ‘meta_value_num’,

    but how could i filter to not display past post ? only if post >= today date ?

    To display the date on slide i use the meta tag Revolution slider %meta:thedates_0_thedate% but the format is YYYYMMDD, i need to change it.

    And %meta:mycustomtaxonomy% return and display the ID but not the name…

    THANKS !!!