Archived topic
Blog Entry Date
3 replies · Started by Asiya on June 4, 2020
Viewing posts 1–4 of 4
On Blog entries- Is there a way to make the date centered and NOT a link?
https://byasiya.com/2020/06/spiralized-zucchini-pad-thai/
Hi there,
add this CSS to center the date:
.entry-header .entry-meta {
text-align: center;
}
and add this PHP snippet to remove its link:
add_filter( 'generate_post_date_output', function( $output, $time_string ) {
printf( '<span class="posted-on">%s</span>',
$time_string
);
}, 10, 2 );
amazing- your the best! Thanks David!!! Site is back to where it was before I deleted the CSS!!!
Glad we can be of help.
This archived topic is closed to new replies.