Tagged Questions
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
114 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 ...
0
votes
3answers
2k views
How can I list posts by author?
How can I list posts as sub-items of authors? It should look like:
<ul>
<li>Author</li>
<ul>
<li>Post1</li>
...
