To change the Genesis Framework author box title, you can use a filter:
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') ); |
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') ); |
add_filter('genesis_author_box_title', 'graceful_author_box_title'); |
function graceful_author_box_title($title) { |
$title = sprintf( '<strong>%s</strong>', get_the_author() ); |
add_filter( 'genesis_author_box_title', 'author_box_title' ); |
function author_box_title() { |
$title = do_shortcode('[post_author_link before="<b>" after="</b>"]'); |
More on get_the_author_meta().