PluginProbe
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP / 1.2.16
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP v1.2.16
1.2.73 1.2.72 1.2.71 1.2.70 1.2.69 1.2.68 1.2.67 1.2.66 1.2.65 1.2.64 1.2.63 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 1.0.22 All 173 releases
userswp / templates / dashboard-simple.php

dashboard-simple.php in UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP 1.2.16, at templates/dashboard-simple.php

18 lines 603 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 global $current_user;
3
4 echo '<div class="uwp-login-widget user-loggedin">';
5
6 echo '<p>'.esc_html__( 'Logged in as ', 'userswp' );
7
8 echo '<a href="'. esc_url( uwp_build_profile_tab_url($current_user->ID) ).'">' . get_avatar( $current_user->ID, 35 ). '<strong>'. apply_filters('uwp_profile_display_name', esc_attr( $current_user->display_name ) ).'</strong></a>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
9
10 echo '<span>';
11
12 echo '<a href="'.esc_url( wp_logout_url() ).'" class="uwp-logout">'.esc_html__("Logout","userswp").'</a>';
13
14 echo '</span>';
15
16 echo '</p>';
17
18 echo '</div>';