Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active May 30, 2016 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjohnson/9354434ed14259a919115e71bf5c76af to your computer and use it in GitHub Desktop.
Save kjohnson/9354434ed14259a919115e71bf5c76af to your computer and use it in GitHub Desktop.
<?php
add_filter( 'ninja_forms_field_template_file_paths', 'my_custom_file_path' );
function my_custom_file_path( $paths ){
$paths[] = dir( __FILE__ );
return $paths;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment