// Modify the author says text in comments
add_filter( ‘comment_author_says_text’, ‘custom_comment_author_says_text’ );
function custom_comment_author_says_text() {
return ”;
}
// Modify the “Leave a Reply” title in comments
add_filter( ‘comment_form_defaults’, ‘sp_comment_form_defaults’ );
function sp_comment_form_defaults( $defaults ) {
$defaults[‘title_reply’] = __( ‘Leave a Comment’ );
return $defaults;
}
// Customize search form input button text
add_filter( ‘genesis_search_button_text’, ‘sp_search_button_text’ );
function sp_search_button_text( $text ) {
return esc_attr( ‘’ );
}
Leave a Comment