Support

Account

Home Forums General Issues get_posts with meta_key on relationship field Reply To: get_posts with meta_key on relationship field

  • I answer myself :

    $posts = get_posts(array(
       'post_type' => 'club_type',
       'post_status'      => 'publish',
       'posts_per_page'   => -1,
       'meta_query' => array(
       array(
          'key' => 'comite_associe',
          'value' => '"' . $IDcomite . '"',
          'compare' => 'LIKE'
          )
       )
    ));