Tagged Questions
-1
votes
1answer
61 views
Show the most recent post for an author on the author page
I have 6 authors in my blog page. I have profile for each of the authors. I want to show the posts of the authors dynamically under their own profile. I tried the following but it showed all posts. ...
0
votes
0answers
47 views
Show all media by an user in his/her author.php page, how to edit my code
I've a default code that shows all the media uploaded in my site
<?php
$args = array( 'post_type' => 'attachment', 'numberposts' => -1,
'post_status' => 'any', 'post_parent' => ...
2
votes
1answer
65 views
How can I list random authors from current post category?
The following lists authors of the current category.
But I want this to be a list of 6 random authors from current post category.
foreach((get_the_category()) as $category) {
$postcat= ...
0
votes
1answer
51 views
How can i list random author?
Im listing current category of all author list but I want to list random author list from current category.
I was try 'order' => 'RAND', RAND code its not worked.
My Code:
function ...
0
votes
1answer
162 views
Author's Id from wp list authors function
I'm new in wordpress. I want to display all author list with its ID. I'm using wp_list_authors function but didn't get any author id from the author list.
So, How can I get Author's ID in listing of ...
0
votes
1answer
47 views
Display all authors in a theme template
I was having an issue the other day and successfully got a very good answer which helped me alot achive what I wanted.
this is the post which I created and have all the correspondence:
...
1
vote
1answer
66 views
wordpress plugin that show my reputation (points) in any stackexchange project in my wordpress blogs
I'm seeking for a plugin show my points (reputation) of Stackexchange (not Stackoverflow) in my Wordpress blogs.
or other projects in stackexchange like :
Superuser
Security
Serverfault
SharePoint
...
0
votes
1answer
68 views
Exclude Authors based off date of last post
I have several writers that range from frequent to one-time writers for my blog. On my Author page, I would like to separate out writers that have not posted an article in 6 months. It would be nice ...
0
votes
1answer
82 views
Exclude Author by ID
How can I exclude authors by ID from this:
<?php
//displays all users with their avatar and their posts (titles)
$blogusers = get_users_of_blog();
if ($blogusers) {
foreach ($blogusers as ...
2
votes
2answers
98 views
Custom Author Fields + Existing Taxonomy - Integrating the Two Dynamically?
I am trying to integrate both the values from an existing custom taxonomy and custom author profile fields. I would like the values to be used as the options from which an author can select when ...
0
votes
1answer
428 views
Display all authors and their only one latest post
OK so this one should be very easy although I just can't find a solution to that.
I have a website with many authors and posts.
I need to create a list of all authors and for each one display his ...
0
votes
2answers
731 views
Authors Page : A page of authors
I'm looking for a way to create a parent authors page and then use the author.php for the individual author pages.
I've been out of the loop (no pun) for a couple months and am wondering the best way ...
0
votes
1answer
83 views
How to show list authors with at least five posts published
i'm wondering if there is a way to use wp_list_authors to list only the authors with at least five (or even more, but anyway more than just one or two) published post in the blog.
Actually I don't ...
0
votes
2answers
188 views
What does the class look like that is returned from WP_User_Query?
$wp_user_search = new WP_User_Query( array( 'role' => 'author' ) );
$author_list = $wp_user_search->get_results();
foreach($author_list as $author)
{
// author properties?
}
Can you point ...
1
vote
3answers
1k views
Authors list Pagination?
WordPress has a built in function to display a list of all of your site’s authors. But there is no option to display their avatars, so all you really get is a text list that links to the author’s ...
0
votes
1answer
816 views
Custom Author Loop
Essentially what I'd like to do is have the same effect as the wp_list_authors tag, but instead of just listing the name or their post count, I want to be able to do a loop with the IDs. Ultimately ...
1
vote
3answers
1k views
List authors of site with link and gravatar
I'm trying to do something I assumed would be easy. I assumed wrong. What I want to do is list all the authors of a site on the sidebar, with a link to their respective author page, number of posts ...

