As @Pat said, pre_get_posts is action hook, it wont work that way. But you don’t need to use pre_get_posts hook in functions.php.
Remove this functions and filter from functions file and use these arguments in you WP_Query. orderby instead of ID, use menu_order.
$args = array(
'post_type' => 'bxslider',
'orderby' => 'menu_order',
'order' => 'ASC',
'posts_per_page' => -1,
'ignore_sticky_posts' => 1,
);
Related Posts:
- Adding ‘menu order’ column to custom post type admin screen
- Custom post type – order field
- Displaying a custom post type alphabetically
- Order by & include array by specific post ids
- Sort Order for a Custom Query in a Post Type Archive Not Working
- Select All in Parent Category, Group by Child Category?
- Ordering posts having multiple post-meta date fields
- Order Posts by Taxonomy and Meta Value
- WP_Query -> sort results by relevance (= most tags / taxonomy terms in common)
- Custom Post type sort order not working in the admin area
- Order posts by (hierarchical custom) taxonomy terms and term children
- Compare 3 custom fields and sort by oldest
- List upcoming events, ordered by date in a custom field
- ascending order custom post type
- WP_Query post at custom position
- Sort custom post types by last name in the backend
- query order by date on custom type: wrong order
- Taxonomy list. Order by a specific custom post type count
- WooCommerce – Show orders for a specific product ? [closed]
- Re-order posts in query after
- Display custom post types with custom date field value (before today) & order by custom date field
- Custom Post Type order by modified date and custom meta field issue
- How to query different post types in specific order?
- How to quickly reorder posts in the admin panel that will persist for the wp-api
- How do I make a custom taxonomy for a CPT appear inbetween title and editor boxes?
- Combining sorted and random CPT
- Show listings from Impress Listing plugin in random order using taxonomy and terms
- I did group my search results by post type, but how can i give each of them its own order?
- Ordering posts in Search & taxonomy by post_meta
- Rewrite and custom post type: order by custom field not working
- Previous/Next Link by Meta Value in CPT
- How to order separated Custom Post Search results
- Wp_query: sort by PHP variable
- Allow user to set custom order to a list of custom taxonomies?
- Sort CPT archive by order prevents sorting in admin
- How to do WP_Query with two meta fields with orderby clause
- How to order and group custom post type posts by year and month
- Order Custom Post Type by Custom Field Value
- Get the taxonomy of a post hierarchically
- Change sort order when using ‘orderby’ => ‘type’
- Display Woocommerce Orders for specific author [closed]
- Ordering custom post type by multiple custom fields
- Manage Columns : order by post_parent’s title
- Order by custom field meta_key date and then by custom file meta_key number
- Archive not sorting correctly
- 4 column-loop ordered alphabetically with entries grouped (and labeled) by their first letter
- Ascending Order is not Working in Custom Post Type Listining
- Add a custom meta box for client to order CPT posts how they want
- Custom post type sorting: alphabetical order
- $wpdb->get_col and ORDER BY?
- Having Issue on Ordering CPT by Custom Field In Custom WP Query
- WP_Query of custom post type sorted by meta_key has unexpected results
- WP_Query not resetting after wp_reset_postdata
- Post ordering not working with custom field
- Filtered by a custom field, ordered by another
- orderby parameter not working in custom query
- Adding Page Ordering to a Custom Page Type
- Displaying Portfolio Filter by Category Order (alphabetically)
- show most viewed posts of last days by link?
- Changing WordPress sort order for returned child pages
- Order posts by taxonomy terms
- wp rest api orderby field in a custom table
- Display Parent-Child Posts in specific order by comparing IDs in array
- How can I sort the results of a REST API response by the title of a connected custom post type?
- Order posts alphabetically with numbers but some of the posts has numbers in the title
- How to order taxonomy terms by most recent post?
- Orderby if between two meta fields
- Display custom posts, ordered by most commented, without duplicates
- Custom post type order by post_title
- SEARCH QUERIES – REVERSE OUTPUT
- order custom post type posts by custom date
- How to order multiple custom post types with same taxonomy by date
- Wp Query sort order from custom MetaBox
- Using Orderby and meta_value to order natural/alphanumerical
- How to sort custom post’s category by id from the theme’s function.php?
- What’s the most efficient way to get two queries based on an if statement?
- Show first posts with custom field not empty and order all by title
- WP Query with multiple post types ordered by custom meta date then published date
- Orderby modified only for specific post types
- Custom post order when using OR relation
- Help ordering custom query by Title, Ascending
- shortcode order for event custom post type
- How to display custom post type ordered by a custom field date
- Order Custom Posts by Several Fields
- Custom Post Type Order Index Loop
- show previous/next post orderer by title in custom post types
- Ordering custom post type by custom field without a title
- Create custom post order (with custom post type meta)
- 404 on Pages for Custom Post Type & Query_Posts
- Allow admin to determine the order of queries?
- Posts 2 Posts: query connected — orderby problem
- Order custom post type is beign ignored
- How to order different custom post type in category or tag template page?
- WP_query orderby not working after WP4.0 update [closed]
- Query order by meta value force specific tag first
- Order Wp Query by earliest of 3 dates meta query
- WordPress custom post type archive with description
- Content in WP Editor displayed below CPT shortcode [duplicate]
- Filter taxonomy by CPT
- Structure of custom post type / taxonomy?