Archived topic
Vertical line between the author and the post date
3 replies · Started by Roger on July 21, 2021
Viewing posts 1–4 of 4
Hi,
How to insert a vertical line between the author and the post date.
I applied this code:
add_filter( 'generate_header_entry_meta_items', function() {
return array(
'author',
'date',
);
} );
Hi Roger,
Try this CSS:
.posted-on:before {
content: "|";
padding-right: 5px;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Great!
Thank you!
No problem :)
This archived topic is closed to new replies.