Created
April 16, 2013 23:10
-
-
Save LinzardMac/5400439 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section id="discount"><h1>Daily Discount Special</h1> | |
<?php | |
$params = array( | |
'limit' => 1, | |
); | |
$promos = pods('discount_code'); | |
$promos->find($params); | |
$code= $promos->field('code'); | |
$desc= $promos->field('describe_code'); | |
?> | |
<p> <?php echo $desc;?> Use voucher code <span><?php echo $code;?></span></p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment