Skip to content

Instantly share code, notes, and snippets.

@jaredatch
Created February 13, 2015 17:20
Show Gist options
  • Save jaredatch/1562aa6de1bc33db0bb3 to your computer and use it in GitHub Desktop.
Save jaredatch/1562aa6de1bc33db0bb3 to your computer and use it in GitHub Desktop.
Change author box title text in Genesis
<?php
/**
* Change "About" text in author box titles for single posts
*
* @since 1.0.0
* @param string $title
* @param string $context
* @return string
*/
function ja_author_box_title( $title, $context ) {
if ( 'single' == $context ) {
$title = str_replace( 'About', 'Written by', $title );
}
return $title;
}
add_filter( 'genesis_author_box_title', 'ja_author_box_title', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment