I want to replace the main query with my own custom query. The thing is I don’t want to go through the hassle of manual paging. I know there’s...
  • May 22, 2022
  • 0 Comments
I’m trying to sort my posts by the custom field artwork_title. When I use the following code, I just end up with one particular category of posts no matter...
  • May 22, 2022
  • 0 Comments
I want multiple orderby meta_query eg: orderby(‘_property_price’ => ‘DESC’,’_property_featured’ => ‘DESC’) This is what I am doing $query->set('meta_key',array('_property_price','_property_featured')); $query->set('orderby',array('meta_value'=>'DESC')); In SQL, it should be like ORDER BY _property_price, _property_featured...
  • May 21, 2022
  • 0 Comments
i need to change the posts in taxonomy.php page. I have a meta_key which i want to compare to meta value. But currently my code is not returning anything....
  • May 20, 2022
  • 0 Comments