How to create a shortcode for custom page template? October 06, 2020 Get link Facebook X Pinterest Email Other Apps 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
Comments
Post a Comment