Site logo

Archived topic

Display date on certain post

1 reply · Started by nanche on May 7, 2016

Viewing posts 1–2 of 2

Hello,
I currently have the date disabled for all of my posts, but I would like to enable it for just one of them. Is there anyway this is possible?

You could do something like this using the generate_post_date filter:

add_filter( 'generate_post_date','generate_show_specific_date' );
function generate_show_specific_date()
{
    // If post ID is 10, show the date
    if ( is_single( 10 ) )
        return true;

    // Otherwise, remove the date
    return false;
}

Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/

This archived topic is closed to new replies.