Need to display custom field value in td_module_2

Posted in: Newspaper
Post count: 10

Hi everyone,

I’m using Advanced custom fileds plugin. I’ve created field ‘event_date’ and use it in posts. This field contains date format and represents event start date. So I need this field to be shown in blocks on the main page.

The field is shown OK when I call it with <?php the_field(‘event_date’); ?> within post page.
But I need it to be shown in td_module_2.php inside <div class=”meta-info”></div>.

Can you help me with right way how to call it bacause all the standard ways not working.

Thank in advance.

Post count: 10

Got it:
$c_fields = get_post_meta($this->post->ID, ‘event_date’, true);

In any case the_field() function exists but not working. Maybe somebody knows how to make it work.

Post count: 7909

Hi,

I’m not sure if this helps but you can try to add post id also in the field function:

the_field('event_date', $this->post->ID);

Hope this helps!

Post count: 10

It works. Thank you very much!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.