Home › Forums › Front-end Issues › How to Get Field in the Title › Reply To: How to Get Field in the Title
<?php
class td_module_mx1 extends td_module {
function __construct($post) {
//run the parrent constructor
parent::__construct($post);
}
function render() {
ob_start();
?>
<div class="<?php echo $this->get_module_classes();?>">
<?php echo $this->get_image('td_356x220');?>
<div class="td-module-meta-info">
<?php echo $this->get_title();?>
<?php the_field('your_field_name'); ?>
<div class="td-editor-date">
<?php if (td_util::get_option('tds_category_module_mx1') == 'yes') { echo $this->get_category(); }?>
<span class="td-author-date">
<?php echo $this->get_author();?>
<?php echo $this->get_date();?>
</span>
</div>
</div>
</div>
<?php return ob_get_clean();
}
}
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.