I tried this but on my themes functions know matter how I try it All I keep getting is the white screen of death. I have tried the code with the ?> and without it and it still does not work? I have stuff written in my functions.php already. (I have a child theme)
This custom function goes in your child theme functions.php file. If it is blank, start with <?php and close the code with ?>
function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Leave a Reply' => 'Leave a Comment',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );
And I know you can change the color of the top border of the author reply. But how can I add a sold colored border “all around my author reply only?