Site logo

Archived topic

Change Post Meta Order to Byline Then Date

2 replies · Started by jhmattern on January 25, 2020

Viewing posts 1–3 of 3

Right now the post meta below my post titles on single post pages is "Date by Author."

I'd like it formatted at "by Author | Date"

I tried creating an element using the following and setting it to display after entry titles:

add_filter( 'generate_header_entry_meta_items', function() {
    return array(
        'author',
        'date',
       
    );
} );

I set it to execute PHP.

But this isn't working. It's just outputting the code itself.

The site's in maintenance mode during the changeover, but I'm linking a screenshot.

Post Meta

Any help is appreciated.

Thanks!

Nevermind! I just realized I couldn't add the filter as an element and used the code snippet plugin instead. Works fine now. :)

Glad to hear you found the solution :)

This archived topic is closed to new replies.