Support

Account

Forum Replies Created

  • I am wondering if anyone has face this issue ?

  • Hey @hube2

    Just wondering how that would work.
    I have a relationship field called “just like”. I use the following code to spit out post ids.

    $posts = get_field('just_like', false, false);

    This works well and returns and array of all post ids.

    Now each post has a meta field called vote.
    How would I filter all of them via vote.

    I tried the following

    `$args = array(
    ‘numberposts’ => -1,
    ‘post_type’=> ‘software’,
    ‘post_in’ => $posts,
    ‘key’=> ‘post_like_count’,
    ‘orderby’ => ‘meta_value_num’,
    ‘order’ => ‘DESC’);
    $the_query = new WP_Query( $args );’

Viewing 2 posts - 1 through 2 (of 2 total)