%PDF- %PDF-
Direktori : /var/www/html/itworks/wp-content/plugins/learnpress/templates/profile/ |
Current File : /var/www/html/itworks/wp-content/plugins/learnpress/templates/profile/dashboard-logged-in.php |
<?php /** * Template for displaying message in profile dashboard if user is logged in. * * This template can be overridden by copying it to yourtheme/learnpress/profile/dashboard-logged-in.php. * * @author ThimPress * @package Learnpress/Templates * @version 3.0.0 */ /** * Prevent loading this file directly */ defined( 'ABSPATH' ) || exit(); $profile = LP_Profile::instance(); if ( ! $profile->is_current_user() ) { return; } $user = $profile->get_user(); ?> <p><?php echo sprintf( __( 'Hello <strong>%s</strong> (not %s? %s)', 'learnpress' ), $user->get_display_name(), $user->get_display_name(), sprintf( '<a href="%s">%s</a>', $profile->logout_url(), __( 'Sign out', 'learnpress' ) ) ); ?></p>