I’m trying to implement my own query ordering, here is what I came up with… $query = new WP_Query('post_type=contentboxes&include=" . $contentboxes . "&order=ASC&orderby=include' ); My custom loop, $contentboxes looks...
  • May 24, 2022
  • 0 Comments
Using the pre_get_posts hook, I’m trying to allow users to narrow down their search by limiting it to posts with certain (multiple) tags applied. This is my hook and...
  • May 24, 2022
  • 0 Comments