Files
WP-Multi-Wiki/templates/breadcrumb.php
2026-03-18 21:56:40 +01:00

16 lines
759 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
<nav class="wmw-breadcrumb" aria-label="Breadcrumb">
<ol class="wmw-breadcrumb__list">
<?php $last = count($items) - 1; foreach ($items as $i => $item): ?>
<li class="wmw-breadcrumb__item <?php echo $i === $last ? 'is-current' : ''; ?>">
<?php if ($item['url'] && $i !== $last): ?>
<a href="<?php echo esc_url($item['url']); ?>" class="wmw-breadcrumb__link"><?php echo esc_html($item['label']); ?></a>
<span class="wmw-breadcrumb__sep" aria-hidden="true"></span>
<?php else: ?>
<span><?php echo esc_html($item['label']); ?></span>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ol>
</nav>