[Resolved] Blog Entry Date

Home Forums Support [Resolved] Blog Entry Date

Home Forums Support Blog Entry Date

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1314957
    Asiya

    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/

    #1315277
    David
    Staff
    Customer Support

    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/

    #1315742
    Asiya

    amazing- your the best! Thanks David!!! Site is back to where it was before I deleted the CSS!!!

    #1315748
    David
    Staff
    Customer Support

    Glad we can be of help.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.