Tagged Questions
0
votes
1answer
41 views
finding out the top 5 source ( source is a custom taxonomy ), in a given category
The client I'm working with have thousands of articles and media ( audio/video ) files.
To WordPress, all are posted by Author ID 1, which we named as STAFF.
All the content though in reality has ...
2
votes
1answer
64 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
115 views
How can i list random post from multiple category?
I have an author page, and I want to list posts from current author's categories.
e.g. I'm viewing John's page, and John wrote in Sport, Tech, News, Computer categories.
Then my code list from this ...
