Below is the code to customize Genesis author box title.
This file contains 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 | |
//* Customize Genesis author box title | |
add_filter('genesis_author_box_title', 'customprefix_customize_author_box_title'); | |
function customprefix_customize_author_box_title() { | |
return '<strong>About the Author</strong>'; | |
} |