Skip to content

Instantly share code, notes, and snippets.

@ChrisCree
Created May 30, 2013 13:00
Show Gist options
  • Save ChrisCree/5677645 to your computer and use it in GitHub Desktop.
Save ChrisCree/5677645 to your computer and use it in GitHub Desktop.
Customizing the Author Box Title with the Genesis theme framework.
<?php
// Modify the author box title
add_filter('genesis_author_box_title', 'child_author_box_title');
function child_author_box_title($title) {
$title = sprintf( '<h3>%s %s</h3>', __( 'About', 'genesis' ), get_the_author() ) );
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment