Inside Page Banner

Gift Vouchers

Gift Voucher

Perfect for any occasion!

AUD: 25.00

Loading Updating cart...

Gift Voucher

Perfect for any occasion!

AUD: 50.00

Loading Updating cart...

Gift Voucher

Perfect for any occasion!

AUD: 75.00

Loading Updating cart...
<?php
	$mypages = get_pages('child_of='.$post->ID.'&sort_column=post_date&sort_order=desc');

	foreach($mypages as $page)
	{
		$content = $page->post_content;
		if(!$content) // Check for empty page
			continue;

		$content = apply_filters('the_content', $content);
	?>
		<h2><a href="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title ?></a></h2>
		<div class="entry"><?php echo $content ?></div>
	<?php
	}
?>