contact_form_message, implode( , $message

contact_form_message, implode( , $message

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('contact_form_message, implode( , $message') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-email-renderer.php line 308
    		 *
    		 * @param string $message Feedback email message.
    		 * @param string $message Feedback email message as an array
    		 */
    		$message = apply_filters( 'contact_form_message', implode( '', $message ), $message );
    
    		// Render a prominent TEST SUBMISSION banner when this came from a form
    		// preview, so the form owner can immediately tell that this response is
    		// a synthetic test. It is injected at the very top of the email so the
    		// rest of the body still looks like a normal submission email.
    		$banner = $is_test ? self::build_test_submission_banner() : '';