Skip to content

Instantly share code, notes, and snippets.

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 nutsandbolts/7255535 to your computer and use it in GitHub Desktop.
Save nutsandbolts/7255535 to your computer and use it in GitHub Desktop.
Remove the Genesis author box from bbPress pages (XHTML child themes)
// Remove author box from forums
add_action ('genesis_after_post', 'nabm_remove_author_box' );
function nabm_remove_author_box() {
if ( is_bbpress() ) {
remove_action( 'genesis_after_post', 'genesis_do_author_box_single' );
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment