generate_footer_entry_meta_items

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',
);
} );

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注