Avatar as Featured Image

Posted in: Newspaper
Post count: 55

Hi,

Could anyone assist me to call the authors avatar/image replacing the post/page featured image?

Thanks,

Post count: 1291

Hi,

Do you want it to display everywhere (on modules/blocks and posts) of just inside the post page?
For the single post you can replace the following line to display the author avatar:
http://screencast.com/t/2uoydxw1
http://screencast.com/t/OjvjJvp8aW

$author_id = get_the_author_meta('ID');
echo get_avatar($author_id, 206);

If you want to display it everywhere you will have to modify the get_image function in td_module_blog.php ( http://screencast.com/t/tat6djPjK ) if you don’t know how to do that you will have to hire a professional developer.

Thank you

  • This reply was modified 12 years by Emil G.
Post count: 55

Emil, thank you.

I need to load the author avatar if there is no featured image for the post, and list it everywhere in the site. See what I have so far inside functions.php:

/* == Place the Avatar as Featured Image == */
add_filter( ‘get_image’, ‘my_avatar_image’ );
function my_avatar_image( $image ) {
return get_avatar( get_the_author_meta( ’email’ ) );
}”

What I am doing wrong?

Regards,

  • This reply was modified 12 years by rbaccaro.
Post count: 6600

Hi,

I’am not sure if that code is correct, please try to find another one .

Thanks for the message

Post count: 55

Hi, can I save and modify the td_module_blog.php inside the child?

Or should I tweak the parent?

Thank you,

Post count: 6600

Hi,

Yes, you can modify it inside the child theme.

Thank you

Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.