Skip to content

Instantly share code, notes, and snippets.

@nciske
nciske / double-confirmation-fields.php
Last active February 8, 2016 15:03
Tweaked to allow a custom message
<?php
/**
* Double Confirmation Fields
* http://gravitywiz.com/2012/05/01/custom-field-confirmation/
*/
register_confirmation_fields( 10, array( 1, 2 ), 'Your custom messages do not match.' );
add_filter( 'gform_validation', 'gfcf_validation' );
function gfcf_validation( $validation_result ) {