This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Help

#3070
Ernest MarcinkoErnest Marcinko
Keymaster

Yes. I see you are using the ACF plugin. In this case I think you need the extended version of the function, because you are not in the main loop

so instead of:

[php]
get_field(‘fieldname’)
[/php]

use the:

[php]
get_field(‘fieldname’, $pageposts[$k]->id)
[/php]

it might work.