Skip to content

Instantly share code, notes, and snippets.

@cdils
Last active March 4, 2022 22:37
Show Gist options
  • Save cdils/7752867 to your computer and use it in GitHub Desktop.
Save cdils/7752867 to your computer and use it in GitHub Desktop.
Customize the text before the comment form in WordPress. Note: Logged in users will not see this text.
<?php //remove this line
add_filter( 'comment_form_defaults', 'cd_pre_comment_text' );
/**
* Change the text output that appears before the comment form
* Note: Logged in user will not see this text.
*
* @author Carrie Dils <http://www.carriedils.com>
* @uses comment_notes_before <http://codex.wordpress.org/Function_Reference/comment_form>
*
*/
function cd_pre_comment_text( $arg ) {
$arg['comment_notes_before'] = "Want to see your ugly mug by your comment? Get a free custom avatar at <a href='http://www.gravatar.com' target='_blank' >Gravatar</a>.";
return $arg;
}
@dhananjaygbhardwaj
Copy link

Carrie, you're a savior, ever since my Genesis days. This just allowed me to add a comment policy to the comment form on my current starter. Thank you!

@cdils
Copy link
Author

cdils commented Mar 4, 2022

dhananjaygbhardwaj My pleasure!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment