Skip to content

Instantly share code, notes, and snippets.

@iosipratama
Created September 20, 2017 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iosipratama/8d2910c1e1be2216a6a8802257a21032 to your computer and use it in GitHub Desktop.
Save iosipratama/8d2910c1e1be2216a6a8802257a21032 to your computer and use it in GitHub Desktop.
Genesis Framework : Customize the author box title:
<?php
//* Do NOT include the opening php tag
//* Customize the author box title
add_filter( 'genesis_author_box_title', 'bg_custom_author_box__title' );
function bg_custom_author_box__title() {
return '<h1>About the Author</h1>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment