Any post types you create should appear within the normal Post Types filter.
If you don’t see them there, let me know.
No, the only filter options are the standard: Pages, Posts.
Forgot to note that the fields themselves show in Query Wrangler, fields. But not the custom content type itself, in filter.
These are my active plugins:
Disable Comments
Get User Custom Field Values
myCRED
Pods – Custom Content Type and Fields
Query Wrangler
Simple Custom CSS
Ultimate Member
UpdraftPlus – Backup/Restore
Visualizer: Charts and Graphs
Theme: ZeroGravity
I have also now tried plugin WCK for custom content type & fields, and the post type is not showing for it either (although custom fields show). Just trying to find a custom content type solution that will work with Query Wranger.
(Both are stored as Meta.)
I was able to successfully use Pods, and I think I’ve used WCK before with QW.
Is your new post type public? QW only looks for public post types by default. If not, and you want to add private post types to Query Wrangler, you would need a function like this somewhere in a custom plugin or theme’s functions.php.
add_filter( 'qw_post_types', function( $post_types ){
$post_types += get_post_types( array( 'public' => FALSE, '_builtin' => FALSE ), 'names' );
return $post_types;
});
This is untested but the idea should work.
References:
Ah, okay. That worked — setting the content type public. Thanks.