"Post types order" and multiple post types in query?

Hi,

I have been using the free “post types order” plugin and I like it, makes it easy to sort my posts with drag/drop.

However, now I have a query with multiple post types:

    <?php
        $args = array(
            'post_type' => array('articles','products')
        );
        $the_query = new WP_Query( $args );

    if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>

I would like to be able to sort between multiple post types with drag and drop just like when i sort one. I know the non-free variant of the plugin has more options than the free one but before I buy it I would like to know if this is possible with it? Anyone know?

EDIT: yeah it was possible.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.