Support

Account

Home Forums General Issues Get ALL fields for ALL posts in one array Reply To: Get ALL fields for ALL posts in one array

  • This fixed it:

    foreach ($all_posts as $p):
    		$p->acf_fields = $all_acf_fields[$x];
    		//array_push($all_posts, $p);
    		$x++;
    	endforeach;

    Thanx again for your help!!!