Display date on certain post

Home Forums Support Display date on certain post

Home Forums Support Display date on certain post

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #192598
    nanche

    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?

    • This topic was modified 7 years, 11 months ago by nanche.
    #192615
    Tom
    Lead Developer
    Lead Developer

    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/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.