Home › Forums › Support › How to edit meta info in homepage This topic has 8 replies, 4 voices, and was last updated 5 years, 4 months ago by Tom. Viewing 9 posts - 1 through 9 (of 9 total) Author Posts May 11, 2020 at 1:07 am #1278622 Fajri Hi, how to move the category info in homepage to position author ? Like this> https://prnt.sc/sec3t6 May 11, 2020 at 7:06 am #1279057 DavidStaff Customer Support Hi there, you can use this filter to add the categories to the Header Entry Meta: https://docs.generatepress.com/article/generate_header_entry_meta_items/#examples May 11, 2020 at 1:29 pm #1279777 Fajri I’ve read the link, where i add the code ? May 11, 2020 at 2:04 pm #1279825 LeoStaff Customer Support Adding PHP: https://docs.generatepress.com/article/adding-php/ May 11, 2020 at 11:29 pm #1280281 Fajri i’ve try with code snippet plugin. Its work, but there are duplicate category info in homepage https://prnt.sc/sf4ge0 And then, i want to make the structure of meta like this : Category – Date – Author the separator with strip symbol May 12, 2020 at 9:37 am #1281148 Fajri up May 12, 2020 at 10:47 am #1281265 TomLead Developer Lead Developer You can unset the categories in the footer entry meta: add_filter( 'generate_footer_entry_meta_items', function( $items ) { return array_diff( $items, [ 'categories' ] ); } ); For the separator, try this: .entry-header .cat-links:after, .entry-header .posted-on:after { content: " - "; } May 12, 2020 at 12:22 pm #1281393 Fajri For unset the categories in the footer entry, where is the php file code i changes ? May 12, 2020 at 4:29 pm #1281719 TomLead Developer Lead Developer You can add it using the same method you used above: https://docs.generatepress.com/article/adding-php/ Author Posts Viewing 9 posts - 1 through 9 (of 9 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In