File "navigation.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/templates/myaccount/navigation.php
File size: 544 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

if (!defined('ABSPATH')) {
    exit;
}
do_action('woocommerce_before_account_navigation');
?>

<nav class="woocommerce-MyAccount-navigation">
	<ul>
		<?php 
foreach (wc_get_account_menu_items() as $endpoint => $label) {
    ?>
			<li class="<?php 
    echo wc_get_account_menu_item_classes($endpoint);
    ?>">
				<a href="<?php 
    echo esc_url(wc_get_account_endpoint_url($endpoint));
    ?>"><?php 
    echo esc_html($label);
    ?></a>
			</li>
		<?php 
}
?>
	</ul>
</nav>

<?php 
do_action('woocommerce_after_account_navigation');