Hi.
I have a magazine wordpress site in which I designed a separate page to show all the authors with their nice_names (with URI) and no. of posts.
the code is like this:
<?php
$curauth = get_userdata($row->ID);
$user_link = get_author_posts_url($curauth->ID);
$post_count = get_usernumposts($curauth->ID);
?>
To show the number of posts each author has, I want to exclude a certain category (ID=60).
How do I have to modify the above code?