Skip to content

Instantly share code, notes, and snippets.

@kstover
Created August 24, 2015 19:10
Show Gist options
  • Save kstover/c335e91e2363d019b7b1 to your computer and use it in GitHub Desktop.
Save kstover/c335e91e2363d019b7b1 to your computer and use it in GitHub Desktop.
<?php
function bust_godaddy_caching( $url, $form_id ) {
$new_url = add_query_arg( array( 'nocache' => 1 ), $url );
return $new_url;
}
add_filter( 'ninja_forms_ajax_url', 'bust_godaddy_caching', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment