Site logo

Archived topic

Page Headers on User Profile/Author Pages

19 replies · Started by Xavier Verhoeven on September 7, 2017

Viewing posts 16–20 of 20

No problem!

Super awesome filter :)

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

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;
} );

No problem :)

This archived topic is closed to new replies.