Dear Tom,
your job is amazing π
I have a little suggestion, my site use only static pages and my searchconsole in Google complain the lack of author, published and updated fields in the hatom/entry tag, I solved putting the following in the content-page.php after entry-title:
echo ‘
‘;
$time_string = ‘<time class=”published” datetime=”%1$s” >%2$s</time>’;
time_string .= ‘<time class=”updated” datetime=”%3$s” >%4$s</time>’;
$date = date(‘c’, time());
$time_string = sprintf( $time_string,
esc_attr( get_the_date( ‘c’ ) ),
esc_html( get_the_date( ‘c’ ) ),
esc_attr( $date ),
esc_html( $date ));
echo $time_string;
echo ‘<span class=”author vcard”><span class=”fn org”>Your Name</span></span>’;
echo ‘
‘
Could it be putted in the next update so to avoid modifing again the code or something equivalent so solve the problem?
Thank you very much π