Title: [Plugin: Global Posts Ordering] Conflicts , does not work properly
Last modified: August 20, 2016

---

# [Plugin: Global Posts Ordering] Conflicts , does not work properly

 *  Resolved [candy2012](https://wordpress.org/support/users/candy2012/)
 * (@candy2012)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/)
 * this script conflicts with anything under the wordpress sun, especially with 
   wordpress 3.3.1 itself …
    Not only it brakes the admin interface, it kills any
   kind of display in frontend as well. obviously a js/jquery conflict, I wonder
   when will developers consider those aspects when writing those codes? And yep,
   it IS this script. Once decativated everything is back on track!
 * [http://wordpress.org/extend/plugins/global-posts-ordering/](http://wordpress.org/extend/plugins/global-posts-ordering/)

Viewing 10 replies - 1 through 10 (of 10 total)

 *  Plugin Author [Rasso Hilber](https://wordpress.org/support/users/nonverbla/)
 * (@nonverbla)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623231)
 * Hi Candy, doesn’t break anything in my installation, I also have 3.3.1 running.
   Of course, I ‘considered’ the aspects of unobtrusive scripting, but maybe I missed
   something. Do you have more information on what it breaks in your installation?
 *  Thread Starter [candy2012](https://wordpress.org/support/users/candy2012/)
 * (@candy2012)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623265)
 * Hi,
    Can you for example clarify the mistery sorrounding the display of ONLY 
   5 posts (custom type) no matter how many I select in the settings !??! (I did
   select for ex 10!) The first 5 posts are ok, the 6th however is broken, instead
   of the thumbnail, the “it’s loading” image is displayed and of course the whole
   information correspoding to the 6th article is not pulled at all in any way.
 * I have inserted your codes (as I said, the fists 5 posts from that post-type 
   seem to be OK) starting with the 6th is’t all broken ..
    Wicked nr. 6 or what!??!
 * Thanks
 *  [Ivankovalko](https://wordpress.org/support/users/ivankovalko/)
 * (@ivankovalko)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623266)
 * Error on page /wp-admin/admin.php?page=global_posts_ordering:
 * Warning: _() expects exactly 1 parameter, 2 given in /home/denrojde/public_html/
   wp-content/plugins/global-posts-ordering/global-posts-ordering.php on line 153
 * How to solve this error?
 *  Plugin Author [Rasso Hilber](https://wordpress.org/support/users/nonverbla/)
 * (@nonverbla)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623271)
 * @ candy2012: if you use the function get_posts in your template, wordpress defaults
   to 5 posts and ignores the settings in the admin area. You have to set the variable“
   numberposts” to a number of your choice or -1 for all posts:
 *     ```
       $args = array(
          "post_type"=>array("my_post_type_1", "my_post_type_2"),
          "orderby"=>"menu_order",
          "order"=>"ASC",
          "numberposts"=>-1
       );
       $posts = get_posts($args);
       ```
   
 * Also, you could use the methods described on the [postMash Installation Page](http://wordpress.org/extend/plugins/postmash/installation/).
   Hope this helps.
 *  Plugin Author [Rasso Hilber](https://wordpress.org/support/users/nonverbla/)
 * (@nonverbla)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623272)
 * @ Ivankovaiko: Solved this error message in Version 0.9.1
 *  Thread Starter [candy2012](https://wordpress.org/support/users/candy2012/)
 * (@candy2012)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623274)
 * [@nonverbla](https://wordpress.org/support/users/nonverbla/)
 * wow! I think that broke the witchcraft spell, you know?
    I have my posts displaying
   now !
 * Thanks wizard 🙂
 *  [Ivankovalko](https://wordpress.org/support/users/ivankovalko/)
 * (@ivankovalko)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623280)
 * /wp-admin/admin.php?page=global_posts_ordering
    He writes that:
 * Here you can change the global order of , and .
 * Sorry, no posts to available yet!
 *  Plugin Author [Rasso Hilber](https://wordpress.org/support/users/nonverbla/)
 * (@nonverbla)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623285)
 * @ Ivankalko: It seems like you have given the wrong post types to the plugin.
   Re-Check if they actually exist. You can check if the plugin works at all by 
   using it with the built-in post types:
 *     ```
       if ( class_exists("global_posts_ordering") ) {
          $global_posts_ordering = new global_posts_ordering(array("post", "page"));
       }
       ```
   
 *  [fufimaki](https://wordpress.org/support/users/fufimaki/)
 * (@fufimaki)
 * [14 years ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623386)
 * Hi,
 * I have installed the plugin and I have seen my options that are showing the re-
   order option, however there is one that is not showing it.
 * Could you please help me figuring out what could be?
 * Please check the following images:
 * 1. In this link [http://208.106.232.226/errors/globalpostorder1.JPG](http://208.106.232.226/errors/globalpostorder1.JPG)
   you’ll see the options that have the re-order (circled in red)
 * 2. Here, [http://208.106.232.226/errors/globalpostorder2.JPG](http://208.106.232.226/errors/globalpostorder2.JPG)
   you’ll see the one that basically I need to change the order and it’s not showing
   the re-order option.
 * Thanks
    Best Regards
 *  [fufimaki](https://wordpress.org/support/users/fufimaki/)
 * (@fufimaki)
 * [14 years ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623387)
 * Hi,
 * Has anyone been able to take a look at the links attahed in the above email?
 * Thanks
    Regards

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘[Plugin: Global Posts Ordering] Conflicts , does not work properly’ is
closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/global-posts-ordering_f7fafb.svg)
 * [Global Posts Ordering](https://wordpress.org/plugins/global-posts-ordering/)
 * [Support Threads](https://wordpress.org/support/plugin/global-posts-ordering/)
 * [Active Topics](https://wordpress.org/support/plugin/global-posts-ordering/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/global-posts-ordering/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/global-posts-ordering/reviews/)

 * 10 replies
 * 4 participants
 * Last reply from: [fufimaki](https://wordpress.org/support/users/fufimaki/)
 * Last activity: [14 years ago](https://wordpress.org/support/topic/plugin-global-posts-ordering-conflicts-does-not-work-properly/#post-2623387)
 * Status: resolved