Skip to content

Instantly share code, notes, and snippets.

@topleague
Last active June 28, 2017 09:09
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 topleague/d772c1d75655c7b0d1f68c06cc633ff2 to your computer and use it in GitHub Desktop.
Save topleague/d772c1d75655c7b0d1f68c06cc633ff2 to your computer and use it in GitHub Desktop.
Modify Author Says in Genesis
//* Modify the author says text in comments
add_filter( 'comment_author_says_text', 'topleague_comment_author_says_text' );
function topleague_comment_author_says_text() {
return 'writes'; // if you want to remove the text, simply keep it ''
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment