Site logo

Archived topic

I can't change the position of the post_meta

5 replies · Started by Fabrizio on November 22, 2021

Viewing posts 1–6 of 6

I'm sorry but it still doesn't work. Applying the snippet you indicated will appear 2 more times. If I disable date and author in the theme customizations, it is no longer displayed anywhere.

Hi Fabrizio,

Can you try this snippet and keep the customizer dateoption checked:

add_filter( 'generate_footer_entry_meta_items', function() {
    return array(
        'categories',
        'comments-link',
        'post-navigation',
        'date'
    );
} );

add_filter( 'generate_header_entry_meta_items', function( $items ) {
    return array_diff( $items, array( 'date' ) );
} );

Let me know :)

Perfect! that's fine.
Thanks

No problem :)

This archived topic is closed to new replies.