Skip to content

Instantly share code, notes, and snippets.

@danielrosehill
Created July 6, 2020 16:37
Show Gist options
  • Select an option

  • Save danielrosehill/cf62f3cc0a658eba807eb937ddffa6a0 to your computer and use it in GitHub Desktop.

Select an option

Save danielrosehill/cf62f3cc0a658eba807eb937ddffa6a0 to your computer and use it in GitHub Desktop.
Backup Wordpress archive custom post-byline.php
<div class="post-byline">
<span class="post-date">
<?php
$date = get_the_date();
printf( esc_html_x( 'Published %s', 'Published DATE', 'chosen' ), $date );
?>
</span><br/>
IN <?php the_field('pubtitle'); ?>
<br/>
<a href="<?php the_field('publishurl'); ?>" target="_blank">ORIGINAL LINK &nbsp;&nbsp;|&nbsp;&nbsp; <a href="<?php the_field('backupcopy'); ?>"target="_blank">LOCAL BACKUP</a> </a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment