views:

16

answers:

0

Seems like a basic question, but can't figure this out.. I created a POD and then a template and a PODS page but how do I display it..as in what is the URL. Just can't seem to figure this out..

I created a /mobileapps/ page and the code in there is..

$Record = new Pod('mobileapps');
$Record->findRecords('name ASC');
echo $Record->showTemplate('mobile_apps_template');

The code for mobile_apps_template is as follows

<h3>@name</h3>

I tried

http://site.com/mobileapps/
http://site.com/wp-content/themes/mytheme/mobileapps/

but nothing seems to work.Both URLs give me a 404 page. Can someone please help me out with this...will be greatly appreciated. Thanks.