Author page not loading any author information
-
Hi.
I just noticed on my site’s author pages, no information is being loaded. The code I’m using is below, but the only thing that’s loading is the author’s gravatar and posts list. However, as you can see, I have the author’s name supposed to show up, but it is not. Same goes with author URL and description.
Any thoughts/ideas? Example can be seen at https://itsalltech.com/author/brian
<div style="padding-bottom:20px;min-height:80px;line-height:1.5em"> <div style="float:left;margin-right:10px;height:80px;min-height:150px"><?php echo get_avatar( get_the_author_email(), '45' ); ?></div> <h1 style="margin-bottom:5px"><?php the_author();?></h1> <?php if (get_the_author_meta('user_url')) : ?> <b> <?php _e('Twitter:') ?> </b> <a href="<?php the_author_meta('user_url') ?>"><?php the_author_meta('user_url') ?></a> <?php endif; ?> | <?php if (get_the_author_meta('user_email')) : ?> <b> <?php _e('Email:') ?> </b> <a href="mailto:<?php the_author_meta('user_email') ?>"><?php the_author_meta('user_email') ?></a> <?php endif ?> <br/> <?php if (get_the_author_meta('description')) : ?> <b> <?php _e('Description:') ?> </b> <?php the_author_meta('description') ?> <?php endif; ?> </div> <h1 style="clear:both;margin-bottom:10px;font-size:19px;color:#079CE9;font-style:italic;font-family:georgia">Posts By <?php the_author();?></h1>
- The topic ‘Author page not loading any author information’ is closed to new replies.