Last active
March 20, 2026 05:32
-
-
Save jmabbas/ab5077631d33e6483cdc85145ec29538 to your computer and use it in GitHub Desktop.
Author image instead of title.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'get_the_archive_title', function( $title ) { | |
| if ( is_author() ) { | |
| $author_id = get_queried_object_id(); | |
| $output = '<div class="author-image" style="display:flex; justify-content:center; margin-bottom:20px;">'; | |
| $output .= get_avatar( $author_id, 150 ); | |
| $output .= '</div>'; | |
| return $output; | |
| } | |
| return $title; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment