File: //home/bristolfilton.co.uk/public_html/wp-content/themes/hueman/parts/single-author-date.php
<?php
/* Print the post author. Compatible with Google Structured data. Must be used in the WordPress loop
* @php return html string
/* ------------------------------------ */
$published_date = get_the_date( get_option('date_format') );
?>
<p class="post-byline"><?php _e('by','hueman'); ?>
<span class="vcard author">
<span class="fn"><?php the_author_posts_link(); ?></span>
</span> ·
<?php if ( hu_is_checked('structured-data') ) : ?>
<?php if( get_the_modified_date() != get_the_date() || get_the_modified_time() != get_the_time() ) : ?>
<?php _e('Published', 'hueman'); ?> <time class="published" datetime="<?php echo $published_date; ?>"><?php echo $published_date; ?></time>
· <?php _e('Updated', 'hueman'); ?> <time class="updated" datetime="<?php the_modified_date( get_option('date_format') ); ?>"><?php the_modified_date( get_option('date_format') ); ?></time>
<?php else : ?>
<time class="published" datetime="<?php echo $published_date; ?>"><?php echo $published_date; ?></time>
<?php endif; ?>
<?php else : ?>
<span class="published"><?php echo $published_date; ?></span>
<?php endif ?>
</p>