Tagged Questions
0
votes
1answer
432 views
Removing duplicate values between two wordpress queries
I'm addressing a well known issue in Wordpress, in which I want to display "featured" posts, and under it the rest of the posts.
I have a $query1 which holds 2 featured posts, and my query_posts which ...
5
votes
2answers
197 views
Why does get_users suddenly return duplicates?
I'm having a hard time figuring this one out.
I'm running a simple users query :
$args = array(
'role' => 'custom_role',
'orderby' => 'ID',
'order' => 'DESC',
'number' => ...