Support

Account

Home Forums General Issues Need all custom field entries comma delimeted from all custom post type entries Reply To: Need all custom field entries comma delimeted from all custom post type entries

  • sorry about the typos, what are the results of this, anything?

    
    $args = array(
      'post_type' => 'locations',
      'posts_per_page' => -1
    );
    $query = new WP_Query($args);
    $facebook_ids = array();
    if ($query->have_posts()) {
      while($query->have_post()) {
        $query->the_post();
        $facebook_ids[] = get_field('facebook_group_name');
      }
      wp_reset_postdata();
    }
    echo implode(',', $facebook_ids);