[wp-hackers] Move Comment JavaScript and Comment Metadata Display

Chris Poteet cpoteet at siolon.com
Wed Jan 13 02:10:11 UTC 2010


add_filter( 'gettext', 'remove_at_from_comment_walker', 10, 2 );
function remove_at_from_comment_walker( $translated, $text ) {
   if ( '%1$s at %2$s' == $text )
      return '%1$s %2$s';
}

This function actually removes the "Reply" text. Should it be that way?


More information about the wp-hackers mailing list