Title: Exclude from query
Last modified: August 21, 2016

---

# Exclude from query

 *  Resolved [unknownmale](https://wordpress.org/support/users/unknownmale/)
 * (@unknownmale)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/exclude-from-query/)
 * Is there a way of running a query which superseeds the plugin?
 * I have one page with post titles running in the sidebar and then posts in the
   main content area.
 * I don’t want the sidebar to be reordered, orderby=title&order=ASC not working.
 * [http://wordpress.org/plugins/post-types-order/](http://wordpress.org/plugins/post-types-order/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [nsp-code](https://wordpress.org/support/users/nsp-code/)
 * (@nsp-code)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/exclude-from-query/#post-3975682)
 * You can switch OFF the Autosort and include ‘orderby’ => ‘menu_order’ just for
   queries where the sort need to apply.
    Also you can try to remove the plugin 
   orderby filter, right before you run the query remove_filter(‘posts_orderby’,‘
   CPTOrderPosts’, 99, 2); then put it back after the loop add_filter(‘posts_orderby’,‘
   CPTOrderPosts’, 99, 2); to allow further queries to autosort.
 * Or if you own the Advanced Post Types Order the ‘force_no_custom_order’ => TRUE
   can be used to make the filters to ignore the Autosort ON so it will return the
   order specified within the query. For more details and examples check on this
   link [http://www.nsp-code.com/advanced-post-types-order-api/sample-usage/](http://www.nsp-code.com/advanced-post-types-order-api/sample-usage/)
 *  Thread Starter [unknownmale](https://wordpress.org/support/users/unknownmale/)
 * (@unknownmale)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/exclude-from-query/#post-3975708)
 * Perfect, Thank you!!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Exclude from query’ is closed to new replies.

 * ![](https://ps.w.org/post-types-order/assets/icon-128x128.png?rev=1226428)
 * [Post Types Order](https://wordpress.org/plugins/post-types-order/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/post-types-order/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/post-types-order/)
 * [Active Topics](https://wordpress.org/support/plugin/post-types-order/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/post-types-order/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/post-types-order/reviews/)

## Tags

 * [orderby](https://wordpress.org/support/topic-tag/orderby/)
 * [post order](https://wordpress.org/support/topic-tag/post-order/)
 * [sort](https://wordpress.org/support/topic-tag/sort/)

 * 2 replies
 * 2 participants
 * Last reply from: [unknownmale](https://wordpress.org/support/users/unknownmale/)
 * Last activity: [12 years, 10 months ago](https://wordpress.org/support/topic/exclude-from-query/#post-3975708)
 * Status: resolved