generate_footer_entry_meta_items

The generate_footer_entry_meta_items allows us to re-order or add footer meta items.

Example

If we want to move the date from header entry meta to the footer entry meta and before categories and comments link, we can use this PHP snippet:

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