File: /home/codo66ho/www/wp-content/themes/autodeal/tpl/entry-content/entry-content-meta.php
<?php
/**
* @package autodeal
*/
?>
<?php
echo '<div class="post-meta">';
$meta_elements = themesflat_layout_draganddrop(themesflat_get_opt( 'meta_elements' ));
foreach ( $meta_elements as $meta_element ) :
if ( 'date' == $meta_element ) {
echo '<span class="item-meta post-date">';
$archive_year = get_the_time('Y');
$archive_month = get_the_time('m');
$archive_day = get_the_time('d');
echo '<a class="meta-text" href="'.get_day_link( $archive_year, $archive_month, $archive_day).'">'.get_the_date().'</a>';
echo '</span>';
} elseif ( 'author' == $meta_element ) {
echo '<span class="item-meta post-author">';
printf(
'<a class="meta-text" href="%s" title="%s" rel="author"> <span>%s</span> </a>',
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) )),
esc_attr( sprintf( esc_html__( 'View all posts by %s', 'autodeal' ), get_the_author() ) ),get_the_author());
echo '</span>';
} elseif ( 'comment' == $meta_element ) {
echo'<span class="item-meta post-comments"><span class="meta-text">';
comments_number ();
echo '</span></span>';
} elseif ( 'category' == $meta_element ) {
echo '<span class="item-meta post-categories">'.esc_html__("",'autodeal');
the_category( ', ' );
echo '</span>';
}
endforeach;
echo '</div>';
?>