php - ACF (Wordpress) the_field doesn't work -


my code:

 <p><?php the_field('myimage'); ?></p> 

token from: http://www.advancedcustomfields.com/resources/code-examples/

it displays nothing. why?

if it's image need <img> tag:

<img src="<?php the_field('myimage'); ?>" /> 

Comments