Replies: 1
I installed your plugin and reorder the posts within the category in the instructions/screenshots you provided. I even added it in the custom Wp_query like this:
<?php
$args = array (
'cat' => 5,
'post_type' => 'galeria',
'posts_per_page' => -1
);
$the_query = new WP_Query( $args ); ?>
However, it’s not showing the re-order that I arranged. I also cannot find any other documentation/ instructions on how to do that. Please provide me with instructions on how to show the re-order.