Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created October 13, 2015 21:32
Show Gist options
  • Save reasonstousegenesis/27baf65da64201eb39e1 to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/27baf65da64201eb39e1 to your computer and use it in GitHub Desktop.
Edit the author box title with Genesis
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Edit the author box title with Genesis
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/author-box-title/
*/
add_filter( 'genesis_author_box_title', 'rtug_author_box_title' );
function rtug_author_box_title() {
return 'Writing by <span itemprop="name">' . get_author_name() . '</span>!';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment