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

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註