Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Last active June 7, 2016 19:20
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 cre8tivediva/c0b844462f829838cf6a0b140e0f0374 to your computer and use it in GitHub Desktop.
Save cre8tivediva/c0b844462f829838cf6a0b140e0f0374 to your computer and use it in GitHub Desktop.
Add Author Box to About Page using Genesis
add_action( 'genesis_before_entry', 'genesis_do_author_box_on_page' );
/**
* Add author box to your individual About Page.
*
*/
function genesis_do_author_box_on_page(){
if ( ! is_page( 'about' ) )
return;
if ( get_the_author_meta( 'genesis_author_box_single', get_the_author_meta( 'ID' ) ) )
genesis_author_box( 'single' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment