Search for: Log In Free Support [Resolved] Post meta category – move location? Home › Forums › Support › Post meta category – move location? This topic has 7 replies, 3 voices, and was last updated 11 months, 3 weeks ago by Tom. Viewing 8 posts - 1 through 8 (of 8 total) Author Posts January 29, 2020 at 1:08 pm #1148621 Alf Is there a way to move the post category meta up to the post date and post author? I.e underneath post title? Thanks! January 29, 2020 at 1:19 pm #1148626 LeoStaff Customer Support Hi there, Try this filter: https://docs.generatepress.com/article/generate_header_entry_meta_items/ Adding PHP: https://docs.generatepress.com/article/adding-php/ Let me know if this helps π Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ January 29, 2020 at 1:32 pm #1148634 Alf Great, thanks! January 29, 2020 at 2:55 pm #1148687 LeoStaff Customer Support No problem π Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ January 30, 2020 at 12:45 am #1148961 Alf Just a follow-up, I have added the suggested filter: add_filter( ‘generate_header_entry_meta_items’, function() { return array( ‘categories’, ‘date’, ‘author’, ); } ); (adding it using Code Snippets). However, the category is still visible below the post (both on single post and archive frontpage. Is there a way to filter this location out? And is it possible to add a “,” between the category and post date? Thanks again! January 30, 2020 at 9:13 am #1149564 TomLead Developer Lead Developer Hi there, You can remove it from the footer like this: add_filter( 'generate_footer_entry_meta_items', function( $items ) { return array_diff( $items, [ 'categories' ] ); } ); To add a comma, try this: add_filter( 'generate_category_list_output', function( $output ) { return $output . ', '; } ); Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Ongoing Development: https://generatepress.com/ongoing-development January 30, 2020 at 9:20 am #1149577 Alf Excellent, thank you! January 30, 2020 at 9:35 am #1149596 TomLead Developer Lead Developer You’re welcome π Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Ongoing Development: https://generatepress.com/ongoing-development Author Posts Viewing 8 posts - 1 through 8 (of 8 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In