Breadcrumbs now better match flow from current site.
Book now url only shows if book url is not empty
<h3 class="pTitle"><?php echo get_the_title(); ?></h3>
<p><?php echo get_the_excerpt(); ?></p>
<a class="pDetailButton" href="<?php echo get_permalink(); ?>">>>View Details</a>
- <a target="_blank" class="pBooknow" href="<?php echo $bookUrl; ?>">Book Now</a>
+ <?php if ( $bookUrl ) : ?>
+ <a target="_blank" class="pBooknow" href="<?php echo $bookUrl; ?>">Book Now</a>
+ <?php endif; ?>
</div>
</div>
</div>
<div id="content-wrapper">
<div class="row">
<?php if ( function_exists('bcn_display') && !is_front_page() ) {
- echo "<div class=\"breadcrumbs small-12 columns\">";
- bcn_display();
- echo "</div>";
+ echo '<div class="breadcrumbs small-12 columns">';
+ echo '<span property="itemListElement" typeof="ListItem"><a href="' . get_permalink( 5229 ). '">Home</a></span>';
+ echo '<span property="itemListElement" typeof="ListItem"><a href="' . get_permalink( 5233 ) . '">Lodging Specials</a></span>';
+ echo '<span property="name">' . get_the_title() . '</span>';
+ echo '</div>';
}
?>
</div>