Forum Replies Created

Viewing 1 replies (of 1 total)
  • i was able to get it working by creating a page template.

    Here’s the code i used. Hope it helps.

    <?php
    			$args = array(
    			'offset'          => 0,
    			'orderby'         => 'post_date',
    			'post_type'       => 'cctor_coupon',
    			'post_mime_type'  => '',
    			'post_parent'     => '',
    			'post_status'     => 'publish');
    			$arrPost = get_posts( $args );
    
    			if(!empty($arrPost))
    			{
    			foreach ($arrPost as $testi)
    			{
    			echo do_shortcode( '[coupon couponid="'.$testi->ID.'" coupon_align="cctor_alignleft"  name="'.$testi->post_title.'"]' );
    			}
    			}					?>
Viewing 1 replies (of 1 total)