%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v1/profile/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v1/profile/tabs.php |
<?php /** * User Profile tabs * * @author ThimPress * @package LearnPress/Templates * @version 1.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } global $wp; $first_key = key( $tabs ); ?> <ul class="nav nav-tabs" role="tablist"> <?php foreach ( $tabs as $key => $tab ) : ?> <li class="<?php echo ( $key == $first_key ) ? 'active' : ''; ?>"> <a href="#user_<?php echo esc_attr( $key ); ?>" data-toggle="tab"><?php echo apply_filters( 'learn_press_profile_' . $key . '_tab_title', $tab['title'] , $key ); ?></a> </li> <?php endforeach; ?> </ul> <div class="tab-content"> <?php foreach ( $tabs as $key => $tab ) : ?> <div class="tab-pane <?php echo ( $key == $first_key ) ? 'active' : ''; ?>" id="user_<?php echo esc_attr( $key ); ?>"> <?php if ( is_callable( $tab['callback'] ) ): ?> <?php echo call_user_func_array( $tab['callback'], array( $key, $tab, $user ) ); ?> <?php endif; ?> </div> <?php endforeach; ?> </div> <div class="clearfix"></div>