Skip to content

Instantly share code, notes, and snippets.

@stirtingale
Last active May 16, 2019 08:33
Show Gist options
  • Save stirtingale/8704af992899bee48f76eab149b82945 to your computer and use it in GitHub Desktop.
Save stirtingale/8704af992899bee48f76eab149b82945 to your computer and use it in GitHub Desktop.
Add Netlify Hook for FORMIDABLE Wordpress forms ( Useful if using Netlify as static fallback )
// FORMIDABLE NETFLIY HOOK
add_filter( 'frm_form_attributes', 'add_custom_form_attributes', 10, 2 );
function add_custom_form_attributes( $attributes, $form ){
$attributes .= 'data-netlify="true"';
return $attributes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment