简体   繁体   中英

Wordpress the_author_posts_link

I have a loop where I post list of authors with SQL Query. I also need to post the_author_posts_link with links to author pages. When I put it into loop it renders only the 4th entry for every iteration:

foreach ($all_users_id as $i_users_id ) :


$user = get_userdata( $i_users_id );

the_author_posts_link();

$email = $user->user_email;
echo $email;
?>

<?php endforeach; ?>

Why not work with an existing wordpress template tag?: Template Tags/wp list authors « WordPress Codex

Edit: Gravatars: Search WordPress Plugins >> gravatars

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM