Skip to content

Instantly share code, notes, and snippets.

@cdils
Last active March 4, 2022 22:37
Show Gist options
  • Select an option

  • Save cdils/7752867 to your computer and use it in GitHub Desktop.

Select an option

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;
}
@skgit888

Copy link
Copy Markdown

Thank you Carrie for posting this code! I wanted to change the comment_notes_before and your code was easiest to understand. Thanks again!

@elllensmith15

Copy link
Copy Markdown

I would like to thank the author for sharing this source code. Your post helps me to Customize the text before the comment form in WordPress. I think this post will be a reference to all developers. Expecting more source codes like this.
Spanish with ease

@dhananjaygbhardwaj

Copy link
Copy Markdown

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

cdils commented Mar 4, 2022

Copy link
Copy Markdown
Author

dhananjaygbhardwaj My pleasure!

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