
To change the Genesis Framework author box title, you can use a filter:
/** Modify the author box title */
add_filter('genesis_author_box_title', 'graceful_author_box_title');
function graceful_author_box_title($title) {
$title = sprintf( '<strong>%s %s</strong>', __('Crazy', 'genesis'), get_the_author_meta('user_firstname') );
return $title;
}
/** Modify the author box title */
add_filter('genesis_author_box_title', 'graceful_author_box_title');
function graceful_author_box_title($title) {
$title = sprintf( '<strong>%s</strong>', get_the_author_meta('user_firstname') );
return $title;
}
/** Modify the author box title */
add_filter('genesis_author_box_title', 'graceful_author_box_title');
function graceful_author_box_title($title) {
$title = sprintf( '<strong>%s</strong>', get_the_author() );
return $title;
}
More on get_the_author_meta().







