[Resolved] Author and date of publication on page

Home Forums Support [Resolved] Author and date of publication on page

Home Forums Support Author and date of publication on page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #994436
    Michal

    Hello,
    is there any way, how to show author and date of publication on page (not post)?
    Thanks

    #994723
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Give this a shot:

    add_filter( 'generate_entry_meta_post_types', function( $types ) {
        $types[] = 'page';
    
        return $types;
    } );
    
    add_action( 'wp', function() {
        if ( is_page() ) {
            add_action( 'generate_after_entry_header', 'generate_post_meta' );
        }
    } );

    Let me know πŸ™‚

    #994763
    Michal

    Thanks, it works πŸ™‚

    #995030
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

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