fix: add return to function `tainacan_interface_the_breadcrumb`
This commit is contained in:
parent
5dd718f0e1
commit
4f2a131044
|
@ -4,6 +4,7 @@
|
||||||
* Display parent and current page
|
* Display parent and current page
|
||||||
**/
|
**/
|
||||||
function tainacan_interface_the_breadcrumb() {
|
function tainacan_interface_the_breadcrumb() {
|
||||||
|
ob_start();
|
||||||
$showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show
|
$showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show
|
||||||
$delimiter = '>'; // delimiter between crumbs
|
$delimiter = '>'; // delimiter between crumbs
|
||||||
$home = __('Home', 'tainacan-interface'); // text for the 'Home' link
|
$home = __('Home', 'tainacan-interface'); // text for the 'Home' link
|
||||||
|
@ -183,4 +184,6 @@ function tainacan_interface_the_breadcrumb() {
|
||||||
|
|
||||||
echo '</div></nav>';
|
echo '</div></nav>';
|
||||||
}
|
}
|
||||||
|
$content_breadcrumb = ob_get_clean();
|
||||||
|
return $content_breadcrumb;
|
||||||
} // end tainacan_interface_the_breadcrumb()
|
} // end tainacan_interface_the_breadcrumb()
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
style="min-height: <?php echo esc_attr(get_theme_mod('tainacan_header_min_height', 50)) ?>px;"
|
style="min-height: <?php echo esc_attr(get_theme_mod('tainacan_header_min_height', 50)) ?>px;"
|
||||||
class="navbar navbar-expand-md navbar-light bg-white menu-shadow px-0 navbar--border-bottom <?php echo 'tainacan-header-layout--' . esc_attr(get_theme_mod('tainacan_header_alignment_options', 'default')); ?>">
|
class="navbar navbar-expand-md navbar-light bg-white menu-shadow px-0 navbar--border-bottom <?php echo 'tainacan-header-layout--' . esc_attr(get_theme_mod('tainacan_header_alignment_options', 'default')); ?>">
|
||||||
<div class="container-fluid max-large px-0 margin-one-column" id="topNavbar">
|
<div class="container-fluid max-large px-0 margin-one-column" id="topNavbar">
|
||||||
<?php echo wp_kses_post(tainacan_get_logo()); ?>
|
<?php echo wp_kses_post(tainacan_get_logo() ?? ''); ?>
|
||||||
|
|
||||||
<div class="navbar-box">
|
<div class="navbar-box">
|
||||||
<?php if ( has_nav_menu( 'navMenubelowHeader' ) ) : ?>
|
<?php if ( has_nav_menu( 'navMenubelowHeader' ) ) : ?>
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
<i class="tainacan-icon tainacan-icon-close"></i>
|
<i class="tainacan-icon tainacan-icon-close"></i>
|
||||||
</button>
|
</button>
|
||||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
||||||
<?php wp_kses_post(get_search_form()); ?>
|
<?php get_search_form(); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
@ -73,5 +73,5 @@
|
||||||
<a href="javascript:" id="return-to-top" style="<?php echo (get_theme_mod( 'tainacan_footer_color', 'dark' ) == 'colored' ? 'background-color: #2c2d2d;' : '') ?>"><i class="tainacan-icon tainacan-icon-arrowup"></i></a>
|
<a href="javascript:" id="return-to-top" style="<?php echo (get_theme_mod( 'tainacan_footer_color', 'dark' ) == 'colored' ? 'background-color: #2c2d2d;' : '') ?>"><i class="tainacan-icon tainacan-icon-arrowup"></i></a>
|
||||||
|
|
||||||
<?php if ( !is_page_template( 'page-templates/landing.php' ) ) : ?>
|
<?php if ( !is_page_template( 'page-templates/landing.php' ) ) : ?>
|
||||||
<?php wp_kses_post( tainacan_interface_the_breadcrumb() ); ?>
|
<?php echo wp_kses_post( tainacan_interface_the_breadcrumb() ); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
Loading…
Reference in New Issue