Skip to content

Instantly share code, notes, and snippets.

@bulkstudio
Created February 4, 2013 10:35
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 bulkstudio/4706065 to your computer and use it in GitHub Desktop.
Save bulkstudio/4706065 to your computer and use it in GitHub Desktop.
Use this code to modify the author says text on your site
<?php
/**-------------------------------------------
* @package Bulk Studio
* @link http://bulkstudio.com
* @author Rhythm <rhythm@bulkstudio.com>
* @copyright Copyright (c) 2013, Bulk Studio
-------------------------------------------------*/
/** Modify the author says text */
add_filter( 'comment_author_says_text', 'custom_comment_author_says_text' );
function custom_comment_author_says_text() {
return 'Your Text';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment