[Support request] Page Headers on User Profile/Author Pages

Home Forums Support [Support request] Page Headers on User Profile/Author Pages

Home Forums Support Page Headers on User Profile/Author Pages

Viewing 5 posts - 16 through 20 (of 20 total)
  • Author
    Posts
  • #540377
    Leo
    Staff
    Customer Support

    No problem!

    Super awesome filter πŸ™‚

    #627629
    stlayman

    Leo, do you have a function snippet that will work for the date archive pages too? (for showing a particular page header)

    #627728
    Leo
    Staff
    Customer Support

    That depends on if you are referring to all the date archive or just month etc, this should help:
    https://codex.wordpress.org/Conditional_Tags#A_Date_Page

    #627787
    stlayman

    Yes! This worked for ALL date archives, thank you so much πŸ™‚

    add_filter( ‘generate_page_header_id’, function( $id ) {
    if ( is_date() ) {
    return 546; // ID of the Page Header to use.
    }

    return $id;
    } );

    #627891
    Leo
    Staff
    Customer Support

    No problem πŸ™‚

Viewing 5 posts - 16 through 20 (of 20 total)
  • You must be logged in to reply to this topic.