Below is the code to customize Genesis author box title.
Below is the code to customize Genesis author box title.
<?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>'; | |
} |