$_POST['wbso_auto_sort'] ? 1: 0, // 'can_sort' => $_POST['wbso_can_sort'] ); update_option('wbso_order_options', $options); } //Use Array for Extensibility $options = wbsoft_order_plugin_options(); $user_roles = get_editable_roles(); ?>

*/ ?>
Auto Sort /> If this is checked, the plugin will update the wp_queries automatically and the results will be sorted by the new order.
        If you want to use the new order for some special pages, you can uncheck this option and include 'menu_order' as orderby option into wp_query args.
    Example:
    
    $args = array(
      ... ...
      'orderby'   => 'menu_order',
      'order'     => 'ASC'
      ... ...
    );
    
    $query = new WP_Query($args);
    
    or
    
    $posts = get_posts($args);