PATH:
home
/
lab2454c
/
archswipe.com
/
wp-content
/
plugins
/
user-registration-customize-my-account
/
templates
<?php /** * MY ACCOUNT TEMPLATE MENU ITEM * * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly // if array implode is_array( $classes ) && $classes = implode( ' ', $classes ); $target = ( isset( $options['target_blank'] ) && $options['target_blank'] ) ? 'target="_blank"' : ''; $options['label'] = ur_string_translation( 0, 'user_registration_' . $endpoint . '_label', $options['label'] ); ?> <li class="<?php echo $classes; ?>"> <a class="<?php echo apply_filters( 'urcma_endpoint_anchor_tag_class', 'urcma-' . $endpoint ); ?>" href="<?php echo esc_url( $url ); ?>" title="<?php echo esc_attr( $options['label'] ); ?>" <?php echo $target; ?>> <?php if ( ! empty( $options['icon'] ) ) : // prevent double fa- . $icon = strpos( $options['icon'], 'fa-' ) === false ? 'fa-' . $options['icon'] : $options['icon']; ?> <i class="fa <?php echo $icon; ?>"></i> <?php endif; ?> <span><?php echo esc_html( $options['label'] ); ?></span> </a> </li>
[+]
admin
[-] urcma-myaccount-menu.php
[edit]
[+]
..
[-] urcma-myaccount-menu-item.php
[edit]
[-] .htaccess
[edit]