%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v3/profile/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v3/profile/tabs.php |
<?php /** * Template for displaying user profile tabs. * * This template can be overridden by copying it to yourtheme/learnpress/profile/tabs.php. * * @author ThimPress * @package Learnpress/Templates * @version 3.0.0 */ /** * Prevent loading this file directly */ defined( 'ABSPATH' ) || exit(); $profile = LP_Profile::instance(); ?> <?php do_action( 'learn-press/before-profile-nav', $profile ); ?> <ul class="nav nav-tabs" role="tablist"> <?php foreach ( $profile->get_tabs()->tabs() as $tab_key => $tab_data ) { if ( $tab_data->is_hidden() || ! $tab_data->user_can_view() ) { continue; } $slug = $profile->get_slug( $tab_data, $tab_key ); $link = $profile->get_tab_link( $tab_key, true ); $tab_classes = array( esc_attr( $tab_key ) ); if ( $profile->is_current_tab( $tab_key ) ) { $tab_classes[] = 'active'; } ?> <li class="<?php echo join( ' ', $tab_classes ) ?>"> <!--tabs--> <a href="<?php echo esc_url( $link ); ?>" data-slug="<?php echo esc_attr( $link ); ?>"> <?php echo apply_filters( 'learn_press_profile_' . $tab_key . '_tab_title', esc_html( $tab_data['title'] ), $tab_key ); ?> </a> </li> <?php } ?> </ul> <?php do_action( 'learn-press/after-profile-nav', $profile ); ?>