Last active
August 29, 2015 14:17
-
-
Save mikeyarce/bd2e7c5bd524d2db8bb3 to your computer and use it in GitHub Desktop.
Custom Contact Form Success Message - Jetpack
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
function ma_change_grunion_success_message( $msg ) { | |
global $contact_form_message; | |
return '<h3>' . 'My custom success message' . '</h3>' . wp_kses($contact_form_message, array('br' => array(), 'blockquote' => array()));; | |
} | |
add_filter( 'grunion_contact_form_success_message', 'ma_change_grunion_success_message' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment