Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 6, 2020 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/68e4f32bb10be76f59054f718c270a40 to your computer and use it in GitHub Desktop.
Save billerickson/68e4f32bb10be76f59054f718c270a40 to your computer and use it in GitHub Desktop.
<?php
/**
* Author Box
*
* @package Cultivate
* @author Bill Erickson
* @since 1.0.0
* @license GPL-2.0+
**/
/**
* Author Box
*
*/
function be_author_box() {
echo '<section class="author-box">';
echo get_avatar( get_the_author_meta( 'ID' ), 100 );
echo '<h4 class="author-box-title">About ' . get_the_author() . '</h4>';
echo '<div class="author-box-content">' . wpautop( get_the_author_meta( 'description' ) ) . '</div>';
echo '</section>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment