Site logo

Archived topic

Blog Entry Date

3 replies · Started by Asiya on June 4, 2020

Viewing posts 1–4 of 4

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 );

https://docs.generatepress.com/article/adding-php/

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.