Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Created May 20, 2015 18:47
Show Gist options
  • Select an option

  • Save kjohnson/65d1810c98dd461e9f94 to your computer and use it in GitHub Desktop.

Select an option

Save kjohnson/65d1810c98dd461e9f94 to your computer and use it in GitHub Desktop.
Ninja Forms Upgrade Handler Registration Hook
add_filter( 'nf_upgrade_handler_register', 'add_nf_my_upgrade', 10, 1 );
function add_nf_my_upgrade( $upgrades ) {
$upgrades[] = new NF_Upgrade_My_UPgrade();
return $upgrades;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment