Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Last active March 20, 2026 05:32
Show Gist options
  • Select an option

  • Save jmabbas/ab5077631d33e6483cdc85145ec29538 to your computer and use it in GitHub Desktop.

Select an option

Save jmabbas/ab5077631d33e6483cdc85145ec29538 to your computer and use it in GitHub Desktop.
Author image instead of title.
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