How to create a shortcode for custom page template?

 Just Place the code in Functions.php file



function my_form_shortcode() {
ob_start();
get_template_part('my_form_template');
return ob_get_clean();   
} 
add_shortcode( 'my_form_shortcode', 'my_form_shortcode' );

Comments