Skip to content

Instantly share code, notes, and snippets.

@jpmarchand
Last active January 26, 2017 03:08
Show Gist options
  • Save jpmarchand/8515f6b6eeeccb67caa9 to your computer and use it in GitHub Desktop.
Save jpmarchand/8515f6b6eeeccb67caa9 to your computer and use it in GitHub Desktop.
Customize Genesis author box title. Source: http://my.studiopress.com/snippets/author-box/#modify-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>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment