skip to Main Content

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)
Back To Top