get_field in td_module*.php

Posted in: Newspaper
Post count: 2

Hello!
Please help me to display some fields near $this->get_author(), I need to show get_field(‘start_event_date’)
It’s work when write get_field(‘start_event_date’,111) – with current_id, but I tried many variation for getting the current id (this post, not page of posts), all don’t work.

td_module_4.php:

<?php
class td_module_4 extends td_module {
function __construct($post, $module_atts = array()) {
//run the parrent constructor
parent::__construct($post, $module_atts);
}
function render() {
ob_start();
$title_length = $this->get_shortcode_att(‘m4_tl’);
$excerpt_length = $this->get_shortcode_att(‘m4_el’);
?>

<div class=”<?php echo $this->get_module_classes();?>”>
<div class=”td-module-image”>
<?php echo $this->get_image(‘td_324x235’); ?>
<?php if (td_util::get_option(‘tds_category_module_4’) == ‘yes’) { echo $this->get_category(); }?>
</div>

<?php echo $this->get_title($title_length); ?>

<div class=”td-module-meta-info”>

<?php echo get_field(‘start_event_date’);?>
<?php echo $this->get_author();?>
<?php echo $this->get_date();?>
</div>

<div class=”td-excerpt”>
<?php echo $this->get_excerpt($excerpt_length); ?>
</div>

<?php echo $this->get_quotes_on_blocks();?>

</div>

<?php
return ob_get_clean();
}
}

Post count: 2

I found $this->post->ID

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