Skip to content

Instantly share code, notes, and snippets.

@amorkovin
Created June 21, 2019 09:01
Show Gist options
  • Save amorkovin/4c03e1fc5140eeb8d0ce4d2ae9400c18 to your computer and use it in GitHub Desktop.
Save amorkovin/4c03e1fc5140eeb8d0ce4d2ae9400c18 to your computer and use it in GitHub Desktop.
Получение имени пользователя на странице пользователя WordPress
if ( is_author() ) {
$author = get_user_by( 'slug', get_query_var( 'author_name' ) );
$author_display_name = $author->display_name;
if ($author_display_name) {
$author = '«'.$author_display_name.'»';
} else {
$author = '';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment