-
-
Save Elgameel/cfe6c57b06c7a6943ecda65d8f1dcf4b to your computer and use it in GitHub Desktop.
Edit the author box title with Genesis (Removes 'About').
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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