1 2 3 4 5 |
<?php /** * Allow shortcodes in a Pods Template */ add_filter( 'pods_templates_post_template', 'do_shortcode', 10, 1 ); |
This would automatically run do_shortcode
in all Pods Templates.
1 2 3 4 5 |
<?php /** * Allow shortcodes in a Pods Template */ add_filter( 'pods_templates_post_template', 'do_shortcode', 10, 1 ); |
This would automatically run do_shortcode
in all Pods Templates.