Warning: array_merge(): Argument #1 is not an array in /driftmagazine.se/wp-content/plugins/advanced-custom-fields/core/api.php on line 1185
Hi!
Trying to make a form to make a new post but can’t make it to work.
I’m testing here:
http://driftmagazine.se/test-ny-post/
`// merge sub arrays
foreach( $options as $k => $v )
{
if( is_array($v) )
{
$options[ $k ] = array_merge($defaults[ $k ], $options[ $k ]);
}
}
`