Reply To: How to use filters to change the comment form?

Home Forums Support How to use filters to change the comment form? Reply To: How to use filters to change the comment form?

Home Forums Support How to use filters to change the comment form? Reply To: How to use filters to change the comment form?

#70798
Tom
Lead Developer
Lead Developer

Filters work like this:

add_filter( 'THE_FILTER_NAME','YOUR_CUSTOM_FILTER_FUNCTION' );
function YOUR_CUSTOM_FILTER_FUNCTION() {
      return 'Your custom text to replace the normal text';
}

Let me know if that makes sense 🙂