I am using the following code to get the output of types_render_field()
in an array format.
$platforms = types_render_field('platforms-logo', array( 'raw' => true ));
echo '<pre>';
print_r( $platforms );
echo '</pre>';
getting output:
http://mydomain/wp-content/uploads/2018/12/dot_net.png http://mydomain/wp-content/uploads/2018/12/dot_net-1.png
Expected Output:
array(
[0]=> http://mydomain/wp-content/uploads/2018/12/dot_net.png,
[1]=> http://mydomain/wp-content/uploads/2018/12/dot_net-1.png
)
Is there any way to get the expected output?