WordPress Templates
(Since 1.2.0) -- Pods code can go into WP template files
If you have a Pod Page but want for its code to exist in a file, then create a template for it in your theme folder, then select it from the "Page Template" dropdown in your Pod Page.
By creating a pods.php file in your theme or child theme, Pods will automatically use that for all Pod Pages (unless a different WP Template is set).
Examples
<?php /* Template Name: My Custom Template */ ?> <?php get_header(); ?>IMPORTANT: Make sure that your custom template file has the "Template Name" area!<?php get_footer(); ?><?php pods_content(); ?>
