| Server IP : 127.0.0.1 / Your IP : 216.73.216.109 Web Server : Apache/2.4.54 (Win64) OpenSSL/1.1.1q PHP/8.1.10 System : Windows NT DESKTOP-E5T4RUN 10.0 build 19045 (Windows 10) AMD64 User : SERVERWEB ( 0) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/laragon/backup/www/quilla/wp-content/plugins/td-composer/mobile/parts/ |
Upload File : |
<?php
//get current logd in user data
global $current_user;
//check if admin allow registration
$users_can_register = get_option('users_can_register');
//if admin permits registration
$users_can_register_tab = '';
if ($users_can_register == 1) {
//add the Register tab to the modal window if `Anyone can register` chec
$users_can_register_tab = ' <span></span><a id="register-link">' . __td('Join', TD_THEME_NAME) . '</a>';
}
echo '
<div class="td-guest-wrap">
<div class="td-menu-avatar"><div class="td-avatar-container">' . get_avatar($current_user->ID, 80) . '</div></div>
<div class="td-menu-login"><a id="login-link">' . __td('Sign in', TD_THEME_NAME) . '</a>' . $users_can_register_tab . '</div>
</div>
';