Skip to content

Instantly share code, notes, and snippets.

@LinzardMac
Created April 16, 2013 23:10
Show Gist options
  • Save LinzardMac/5400439 to your computer and use it in GitHub Desktop.
Save LinzardMac/5400439 to your computer and use it in GitHub Desktop.
<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;?>&nbsp;&nbsp;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