✏️ 正在编辑: navigation.php
路径:
/home/h359620/public_html/wp-content/themes/datis/woocommerce/myaccount/navigation.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * My Account navigation * * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/navigation.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 9.3.0 */ if (! defined('ABSPATH')) { exit; } do_action('woocommerce_before_account_navigation'); $user_id = get_current_user_id(); $user = wp_get_current_user(); $avatar = get_avatar_url($user_id, array('size' => 100)); // Display name (نام نمایشی) $display_name = ! empty($user->display_name) ? $user->display_name : $user->user_login; // User code (نام کاربری) $user_code = ! empty($user->user_login) ? $user->user_login : ''; ?> <nav class="woocommerce-MyAccount-navigation" aria-label="<?php echo esc_attr_x('Account pages', 'My Account navigation aria label', 'woocommerce'); ?>"> <div class="account-nav-header d-flex flex-column align-items-center justify-content-center gap-2"> <div class="account-nav-avatar"> <img src="<?php echo esc_url($avatar); ?>" alt="<?php echo esc_attr(sprintf(_x('%s avatar', 'User avatar alt text', 'datis'), $display_name)); ?>" class="account-nav-avatar-img" width="100" height="100" loading="lazy"> </div> <div class="account-nav-name"> <?php echo esc_html($display_name); ?> </div> <div class="account-nav-id d-flex align-items-center justify-content-between flex-row w-100"> <span><?php echo esc_html_x('Username', 'My Account user code label', 'datis'); ?></span> <span><?php echo esc_html($user_code); ?></span> </div> </div> <ul> <?php foreach (wc_get_account_menu_items() as $endpoint => $label) : ?> <li class="<?php echo esc_attr(wc_get_account_menu_item_classes($endpoint)); ?>"> <a href="<?php echo esc_url(wc_get_account_endpoint_url($endpoint)); ?>" <?php echo wc_is_current_account_menu_item($endpoint) ? 'aria-current="page"' : ''; ?>> <?php echo esc_html($label); ?> </a> </li> <?php endforeach; ?> </ul> </nav> <?php do_action('woocommerce_after_account_navigation'); ?>
💾 保存文件
← 返回文件管理器