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

  • So then this query should return 3 posts

    
    $args = array(
      'post_type' => 'locations',
      'posts_per_page' => -1
    );
    $query = new WP_Query($args);
    
    // output posts to see if they are returned by the query
    echo '<pre>'; print_r($query->posts); echo '</pre>';