這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Global Posts Ordering

描述

Yet another plugin for ordering posts? YES!

This plugin makes it possible to adjust the global order of posts from different post types. Basically, it tries to get together the best functionalities of the superb plugins postMash and Simple Page Ordering. Global Posts Ordering uses the stand-alone admin options page of postMash for globally setting the order of posts and the very cool AJAX approach of ‘Simple Page Ordering’. Best you test it yourself and see if it fits your needs.

Please Note:

The major use of this plugin is for mixing posts from differen post types in overview pages that only use the first level of hierarchical posts (e.g. “Books”, “DVDs”, “Records”).

Tested on

  • (OSX) Safari 🙂
  • (OSX) Firefox 🙂
  • (OSX) Chrome 🙂
  • (OSX) Opera 🙂
  • (WIN) Firefox 🙂
  • (WIN) Chrome 🙂
  • (WIN) IE 9 🙂
  • (WIN) IE 8 🙂
  • (WIN) IE 7 :/

Rating and Bugs

As you can see, this plugin is not version 1.0 yet, so please post comments about any bugs you find, before giving it a bad rating.

螢幕截圖

  • Just drag the posts up and down to change their order

安裝

  • Install easily with the WordPress plugin control panel or manually download the plugin and upload the extracted folder to the /wp-content/plugins/ directory

  • Activate the plugin through the ‘Plugins’ menu in WordPress

  • Open the file functions.php in your theme and put the following in there:

    if ( class_exists(“global_posts_ordering”) ) {
    $global_posts_ordering = new global_posts_ordering(array(“my_post_type_1”, “my_post_type_2”, “my_post_type_3”));
    }

You can include the built-in post types ‘post’ and ‘page’ as well as custom post types.

  • Save the functions.php file.

  • If you registered only one post type, there should be a new submenu-item under your post type saying “re-order”. If you registered multiple post types, you should now have a new top-level menu item saying “Global Order”. Each lead you to the drag-and-drop re-ordering interface.

  • Don’t forget to set the “orderby” option, if you fetch your posts in your template, for example like this:

    $args = array(
    “post_type”=>array(“post”, “page”),
    “orderby”=>”menu_order”,
    “order”=>”ASC”,
    “numberposts”=>-1
    );
    $posts = get_posts($args);

Of course, there are many different ways to fetch posts in your template. It’s only important to set the “orderby” to “menu_order” and “order” to “ASC”. Other ways to get the posts ordered by menu_order are described on the postMash Installation Page

  • If anything doesn’t work, please comment.

評價

閱讀全部2個評價

貢獻者及開發者

“Global Posts Ordering” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 Global Posts Ordering 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

0.9.5

  • Added all post statuses to the list, now you can also re-order drafts
  • First element gets now menu order 1, not zero, so that new posts get inserted at the first position, not second
  • Added edit-links to the post-title labels
  • Added edit-links to the post-type labels
  • Minor CSS tweaks

0.9.4

  • If only one post type is registered with the plugin, put it’s admin link in the submenu of this post type, labeled “Re-Order”

0.9.3

  • Wait until admin_init to remove invalid post types (Error produced in 0.9.2)

0.9.2

  • Prevent the plugin from producing errors if no post types are given
  • CSS Tweaks

0.9.1

  • resolved an error with localization

0.9

  • Global Posts Ordering