Add Filter for Do Shortcode in Pods Template

If you want to make sure shortcodes are automatically ran against all Pods Templates, this filter will make that change.

<?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.

Questions