Skip to content

Instantly share code, notes, and snippets.

@govindak
Created February 26, 2018 18:40
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 govindak/57847a4c7a758d885f1942d4e03c0114 to your computer and use it in GitHub Desktop.
Save govindak/57847a4c7a758d885f1942d4e03c0114 to your computer and use it in GitHub Desktop.
function my_form_shortcode() {
ob_start();
get_template_part('my_form_template');
return ob_get_clean();
}
add_shortcode( 'my_form_shortcode', 'my_form_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment