WordPress Development
How to get wordpress author information
To get wordpress author information in your theme need to use below function. <?php the_author(); ?> <?php echo get_avatar( get_the_author_email(), 'size here' ); ?> <?php echo the_author_link(); ?> <?php the_author_posts_link(); ?> <?php the_author_meta( $field, $userID ); ?> <?php the_author_meta('social'); ?> <?php the_author_description(); ?> <?php echo date("D M Y", strtotime(get_userdata(get_current_user_id( ))->user_registered)); ?> Line-1: To get wordpress… Read More