wordpress - How do I ECHO a get_avatar from a PHP Email String -
i'm new php, how extract email value string or echo user's avatar email.
i've tried , not seem work.. means of not working, displays email , default avatar want script use email avatar.
<?php $email = sabai::_h($entity->getauthor()->email); echo get_avatar( $email, 32 ); ?>
any suggestions?
why not replace of simple wordpress functions?
<?php echo get_avatar( get_the_author_meta( 'id' ), 32 ); ?>
Comments
Post a Comment