right now I have:
$image = get_field('image');
If I var_dump($image);
Data returned will look like this:
Array
(
[id] => 540
[alt] => A Movie
[title] => Movie Poster: UP
[caption] => sweet image
[description] => a man and a baloon
[url] => http://localhost:8888/acf/up.jpg
)
If I want to access the title I would do:
$image['title'];
what if I want to access it directly wiithout a variable like:
get_field('image')['title'];
is it possible?