jetpack_forms_hidden_field_value

jetpack_forms_hidden_field_value

Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.15.1.1

apply_filters('jetpack_forms_hidden_field_value') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-field.php line 1607
    		 * @param string $id The ID of the hidden field.
    		 *
    		 * @return string The modified value of the hidden field.
    		 */
    		$value = apply_filters( 'jetpack_forms_hidden_field_value', $value, $label, $id );
    		return "<input type='hidden' name='" . esc_attr( $id ) . "' id='" . esc_attr( $id ) . "' value='" . esc_attr( $value ) . "' />\n";
    	}
    
    	/**
    	 * Enqueues scripts and styles needed for the file field.
    	 *