0byt3m1n1
Path:
/
var
/
lib
/
vz
/
www
/
clients
/
client6
/
web11
/
web
/
wp-content
/
themes
/
virtue
/
templates
/
[
Home
]
File: account-sidebar.php
<?php // Will be removed. $current_user = wp_get_current_user(); if ( 0 == $current_user->ID ) { } else { ?> <div class="kad-account-sidebar"> <div class="kad-customer-image"> <?php echo get_avatar( $current_user->ID, 120 ); ?> </div> <div class="kad-customer-name"> <h5> <?php echo esc_html( $current_user->display_name ); ?> </h5> </div> <div class="account_page_menu"> <ul class="account-menu"> <li> <a href="<?php echo esc_url( wc_customer_edit_account_url() ); ?>" class="kad_editlink"> <?php esc_html_e( 'Edit Account', 'virtue' );?></a> </li> <li> <a href="<?php echo esc_url( wp_logout_url( get_permalink( wc_get_page_id( 'myaccount' ) ) ) );?>" class="kad_logoutlink"><?php esc_html_e('Logout', 'virtue');?></a> </li> </ul> </div> </div> <?php }