Skip to content

Instantly share code, notes, and snippets.

@RavenHeart81
RavenHeart81 / single-author-date.php
Created September 22, 2020 22:20
Suggested edit to Hueman Theme \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
/* ------------------------------------ */
$display_author = hu_is_checked( 'post-meta-author' );
$display_date = hu_is_checked( 'post-meta-date' );
//error_log( $display_author );
if ( $display_author || $display_date ) {
$published_date = get_the_date( get_option('date_format') );
$machine_readable_published_date = esc_attr( get_the_date( 'c' ) );