Created
February 26, 2018 18:40
-
-
Save govindak/57847a4c7a758d885f1942d4e03c0114 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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