Site logo

Archived topic

How to edit meta info in homepage

8 replies · Started by Fajri on May 11, 2020

Viewing posts 1–9 of 9

Hi, how to move the category info in homepage to position author ?

Like this> https://prnt.sc/sec3t6

I've read the link, where i add the code ?

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

up

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: " - ";
}

For unset the categories in the footer entry, where is the php file code i changes ?

This archived topic is closed to new replies.