Skip to content

Instantly share code, notes, and snippets.

@Elgameel
Forked from reasonstousegenesis/functions.php
Last active December 15, 2017 13:04
Show Gist options
  • Save Elgameel/cfe6c57b06c7a6943ecda65d8f1dcf4b to your computer and use it in GitHub Desktop.
Save Elgameel/cfe6c57b06c7a6943ecda65d8f1dcf4b to your computer and use it in GitHub Desktop.
Edit the author box title with Genesis (Removes 'About').
<?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