Skip to content

Instantly share code, notes, and snippets.

@davechu
Last active August 29, 2015 14:02
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 davechu/a6a099653e4b91fb4d95 to your computer and use it in GitHub Desktop.
Save davechu/a6a099653e4b91fb4d95 to your computer and use it in GitHub Desktop.
This will go in functions.php in your theme. This example removes the word "About" from the box title.
/** filter author box that uses user biographical info **/
add_filter( 'genesis_author_box_title', 'dc_change_authbox_title' );
function dc_change_authbox_title($goodies) {
$goodies = str_replace("About", "", $goodies);
return $goodies;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment