Archived topic
Author avatar next to author name in post meta
21 replies · Started by Yoeri on December 20, 2018
Can you make sure this is the code you are using?
It has been updated before:
https://docs.generatepress.com/article/entry-meta-style/#example-1
Hello Leo,
Thanks for your fast reply. Yes I have copy-paste that code yesterday from the url you mention.
Oops sorry I just noticed the error in the code.
Replace:
add_filter( 'generate_footer_entry_meta_items', function( $items ) {
return array(
'date',
'categories',
);
} );
with
add_filter( 'generate_footer_entry_meta_items', function( $items ) {
return array(
'categories',
'post-navigation',
);
} );
Works like a charm, thank you Leo! :)
No problem :)
How can I also make this show up in custom post pages (BWL knowledgebase plugin)
Hi there,
If the plugin using a custom post type, you can add the GP post meta to it using this filter: https://docs.generatepress.com/article/generate_entry_meta_post_types/