Archived topic
Make Date a different color at top of posts?
3 replies · Started by Carol on October 7, 2019
Viewing posts 1–4 of 4
I'm using this php to remove link from date.
add_filter( 'generate_post_date_output', function( $output, $time_string ) {
printf( '<span class="posted-on">%s</span>',
$time_string
);
}, 10, 2 );
Is it possible to make the text a certain color?
Thank you.
Carol
X80Ws+031v45
Hi there,
Try this CSS:
span.posted-on {
color: #1c75bb;
}
Let me know if this helps :)
Thank you very much!
No problem :)
This archived topic is closed to new replies.