function breadcrumbs_shortcode($args = null, $content = null) { if (function_exists('breadcrumbs_display')) { return breadcrumbs_display(true); // true = return, false = echo; } }
<?php } ?> </section><!-- #TopContent --> <?php } // End TopContent // Breadcrumbs //................................................................ if (!empty($showBreadcrumbs) && $showBreadcrumbs != 'false') { // Show the breadcrumbs ?> <div id="Breadcrumbs"> <?php if (function_exists('breadcrumbs_display')) { breadcrumbs_display(); } ?> </div> <?php } // Header Content 2 (below breadcrumbs) //................................................................ $header_two_type = isset($header['header-content-2']) ? get_top_content($header['header-content-2']) : false; if (!empty($header_two_type) && $header_two_type != 'default') { ?> <section id="TopContent_2" class="top-content-area"> <?php // Top Content 2 if ($header_two_type !== 'default') {
function display_breadcrumbs_shortcode() { return breadcrumbs_display(true); // ($return, $linked, $reverse) }