Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Random reordering #99

Closed
jackblackCH opened this issue Mar 3, 2015 · 1 comment
Closed

Random reordering #99

jackblackCH opened this issue Mar 3, 2015 · 1 comment

Comments

@jackblackCH
Copy link

We have over 250 pages with a hierarchy.

We have a problem with auto reordering.
3 editors are working together on the nested pages page, editing content but the editors are not moving the top level pages! It's a fixed order, nobody will change.

I can't reproduce the behavior but even the top level of the nested pages are all the time reordered by magic!... we are just editing sites from different account, not moving!
How may this reordering happen?

Setup: Multisite, WPML (only in 1 language currently), WP 1.11

@scottshefler
Copy link

scottshefler commented Mar 20, 2019

First off, love the plugin! I'm having similar issues where all of a sudden items output in a random order. I have a very simple wp_query and works perfectly initially. Then somewhere along the way once people start adding posts it gets out of order. Going back and re-ordering any item seems to then fix the issue.

<?php
  $case_study_args = array(
    'post_type' => 'case_studies',
    'posts_per_page'=> 9,
    'orderby' => 'menu_order',
    'order' => 'ASC'
  );
  // Query
  $case_study_query = new WP_Query($case_study_args);
?>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants