Skip to content

Snippet: Display Author Bio On Author Archive

// Display author bio on archive
add_action( 'wpex_hook_content_top', function() {
	if ( is_author() ) {
		get_template_part( 'author-bio' );
	}
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top