Hi,
How can I show the post date on the default (business) layout in the blog posts grid listing ?
I managed to display it by editing the postslider.php file here:
$output .= "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
$meta .= get_post_time();
// modern business style
but then it multiplied it once on each next post.
Hope you can give me a better solution, because I searched for a couple of hours in the forums but couldn’t make it.
Thank you in advance
Mariyan
Never mind, I figured it out, just added this line right after the entry-title:
$output .= "<span class='av-masonry-date meta-color updated'>".get_the_time(get_option('date_format'), $the_id)."</span>";
Cheers!
Mariyan