Archived topic
In home page (blog), move comment meta below post title
3 replies · Started by Rogi on April 22, 2020
Hi Guys!
On the homepage (in blog format), I want the meta comment to appear below the post title.
I searched the forum for any suggestions, but unfortunately I didn't find it.
Can you help me with this?
Thanks in advance.
Hi there,
This should help:
https://docs.generatepress.com/article/generate_header_entry_meta_items/
If you want date and comments:
add_filter( 'generate_header_entry_meta_items', function() {
return array(
'date',
'comments-link'
);
} );
Adding PHP: https://docs.generatepress.com/article/adding-php/
Leo,
Thanks a lot for the help.
It worked in part, as the meta commentary continued to appear below the summary as well.
So I had to include the following CSS code:
footer.entry-meta {
Show none! important;
}
Thanks!
That CSS works. You can also use this filter to compliment the other one:
https://docs.generatepress.com/article/generate_footer_entry_meta_items/