Site logo

Archived topic

Remove post date only if post date > 35 days

1 reply · Started by Alex on November 5, 2019

Viewing posts 1–2 of 2

Hi there,

Would the entire post date remove itself? Or only the published/updated?

You could try this:

add_filter( 'generate_post_date_output', function( $output ) {
    if ( strtotime( $post->post_date ) < strtotime( '-35 days' ) ) {
        return '';
    }

    return $output;
} );

Let me know :)

This archived topic is closed to new replies.