-
-
Save billerickson/c93b9a45d808f7274bf6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Change comment form textarea to use placeholder | |
* | |
* @since 1.0.0 | |
* @param array $args | |
* @return array | |
*/ | |
function ea_comment_textarea_placeholder( $args ) { | |
$args['comment_field'] = str_replace( 'textarea', 'textarea placeholder="comment"', $args['comment_field'] ); | |
return $args; | |
} | |
add_filter( 'comment_form_defaults', 'ea_comment_textarea_placeholder' ); | |
/** | |
* Comment Form Fields Placeholder | |
* | |
*/ | |
function be_comment_form_fields( $fields ) { | |
foreach( $fields as &$field ) { | |
$field = str_replace( 'id="author"', 'id="author" placeholder="name*"', $field ); | |
$field = str_replace( 'id="email"', 'id="email" placeholder="email*"', $field ); | |
$field = str_replace( 'id="url"', 'id="url" placeholder="website"', $field ); | |
} | |
return $fields; | |
} | |
add_filter( 'comment_form_default_fields', 'be_comment_form_fields' ); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.comment-respond label { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wouldn't be better to add the .screen-reader-text class to the labels instead of display: none for accessibility?