Someone here knows how to tell me how to get the url from the image of the photo of the author or administrator of the post in wordpress?
Someone here knows how to tell me how to get the url from the image of the photo of the author or administrator of the post in wordpress?
The author's photo is also called avatar .
To display the avatar inside the Wordpress loop is like this:
<?php echo get_avatar( get_the_author_meta( 'ID' ), 32 ); ?>
The first parameter is the email, user id / author or a post object. The second parameter is optional and represents the image size with the maximum being 512 and the default being 96.
If you prefer only the url of the image, use the get_avatar_url
function.
The first parameter is similar to get_avatar
. The second parameter is a vector and accepts several value keys being size for the size.
Example:
<?php echo get_avatar_url( get_the_author_meta( 'ID' ), ['size' => 32] ); ?>
For more examples see the official documentation of the functions. link link