How to display user nickname (not display name) in PHP template?
I would like to display a nickname instead of username/display name on top of my website. I want to insert PHP codes which can display that Nickname in a PHP page. I have tried these codes below, but they don't work:
........some codes above...................
?php global $current_user; wp_get_current_user(); ?
{if is_user_logged_in()}
?php
$nickname = $current_user-user_nickName;
?
?php echo $nickname; ?
..........some codes below.........
But it works for username as below:
........some codes above...................
?php global $current_user; wp_get_current_user(); ?
{if is_user_logged_in()}
?php
$username = $current_user-user_login;
?
?php echo $username; ?
..........some codes below.........
Any suggestion is very appreciated!