Home › Forums › Backend Issues (wp-admin) › Make custom fields visible › Reply To: Make custom fields visible
I don’t have access to that theme, and can’t say with 100% certainty, but I think where you’re trying to get the field is outside the loop.
My guess is that the post loop is actually in whatever file or code is loaded by this line.
<?php echo $td_mod_single->get_content(); ?>
Either that or there isn’t a real loop for this theme. Some theme authors do things in incorrect ways. It is possible to get the current post id without having a loop, but without having a loop you must always supply the post id because without it WP and ACF won’t figure it out for you.
Anyway, you can try this.
<?php
$queried_object = get_queried_object();
the_field('company_name', $queried_object->ID);
?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.