get_avatar() Returning a Number
your code will pretty much produce errors like missing ; at the end this code for example <?php esc_url( the_author_meta( ‘user_url’ ) ) ?> the correct code should be <?php echo esc_url( get_the_author_meta( ‘user_url’ ) ); ?> or <?php the_author_meta( ‘user_url’ ); ?> Why does the author ID number appear? The number that appears above … Read more