Skip to content

Instantly share code, notes, and snippets.

@kaweski
Last active January 11, 2017 19:40
Show Gist options
  • Save kaweski/f7fe20bae70bf8188d630c98e9b0b07e to your computer and use it in GitHub Desktop.
Save kaweski/f7fe20bae70bf8188d630c98e9b0b07e to your computer and use it in GitHub Desktop.
Informações do autor
$author_image = get_user_meta( $author_id, 'qd_user_image', true );
// Pega a imagem inserida para o custom field
if ( $author_image ) {
echo '<img src="'. $author_image .'" />';
// Pega a imagem do Gravatar
} else {
echo get_avatar( $author_id, 128 );
}
get_user_meta( $author_id )['description'][0];
$author_id = get_the_author_meta('ID');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment