I am using the advanced custom field
plugin for Wordpress
. I am having difficulty displaying a field
on my page.
Basically I've created a field group and assigned id's
to the members of that group. I then use the get_field('field_name')
function to store the value of this field in a variable and echo
it on the screen. However this is returning false
.
I've also tried using the_field('field_name')
but this returns null
. I then read somewhere If you are trying to access a field outside of the Wordpress loop you must pass the post id
as a parameter to the get_field()/the_field()
methods.
I've tried that and still the same result...Does anyone have any idea as to what is the problem?
This is my code:
<?php get_header();
$postID = get_the_ID();
the_field('the-title', $postID); //Nothing being returned...
die();
?>