Rundiz PostOrder

描述

If you want to customize the post order to the other than date, id, name. For example: You want to re-arrange it to display as what you want in your agency or company website.
This plugin allow you to re-arrange the post order as you wish.

Re-arrange or re-order the posts but not interfere with sticky posts. Make your web sites different.

You can re-order by one step (move up/down) or multiple steps (sortable items – drag and drop).
Re-order across the page by drag and drop to the top or bottom and then use move up and down to make it re-order across the page.

You can also disable custom post order in some category or all everywhere by adding rd_postorder_is_working and rd_postorder_admin_is_working filters and its value is boolean.
OR!!
You can do that in the settings menu. That’s very easy.

Polylang or multilingual supported.
In the new version, you can use language switcher to switch and list only posts on selected language and then re-order them.

It’s clean!
My plugins are always restore everything to its default value and cleanup. I love clean db and don’t let my plugins left junk in your db too.

It’s completely free!
It’s not the “pay for premium feature” or freemium. It’s free and no ADs. However, if you like it please donate to help me buy some food.

System requirement

PHP 5.5 or higher
WordPress 4.6.0 or higher

螢幕截圖

  • Front end re-order with sticky post.
  • Admin re-order page.
  • Re-ordering action.

安裝

  1. Upload “rundiz-postorder” folder to the “/wp-content/plugins/” directory.
  2. Activate the plugin through the “Plugins” menu in WordPress.
  3. Done.

常見問題

Is multisite support?

Yes, of course.

Is multilingual support?

Yes, it is supported Polylang plugin for list the posts only selected language or all languages. For the other multilingual plugins, it should work too.

Support for re-order the pages or custom post type?

No, it doesn’t support custom post type.

Does it gonna be mess if I uninstall this plugin?

No, on uninstall or delete the plugin, it will be reset the menu_order to zero (0) which is WordPress default value for post content.

How to disable custom order in some category?

Create your plugin and conditions whatever you want such as is_category(['your','category','id','or','name']) and then add this code add_filter('rd_postorder_is_working', '__return_false'); to disable custom order in the categories you choose.
If you want to enable, just remove the filter or change from __return_false to __return_true.
Please note that to hook into this filter in the theme some times it might not work due to pre_get_posts limitation on the template. See more at https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts .
For anyone who use this plugin v 0.8 or newer, there is a settings page that you can check front page or categories to disable custom order. To do this, go to Settings > Rundiz PostOrder menu.

How to disable custom order in admin list post page?

Same as disable custom order in the front-end. Add this filter hook into your theme or plugin. add_filter('rd_postorder_admin_is_working', '__return_false');
Please note that to hook into this filter in the theme some times it might not work due to pre_get_posts limitation on the template. See more at https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts .

評價

There are no reviews for this plugin.

貢獻者及開發者

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

貢獻者

將 Rundiz PostOrder 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

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

修改日誌

1.0.3

2022-02-01

  • Removed no need check requirement, already checked on WP core.
  • Remove donation link.
  • Fix activate/uninstall process.
  • Add network settings (multisite).
  • Move PHP files into sub folders. Each sub folder represent admin menu.
  • Update JS of re-order page to class that supported in newer web browser.
  • Add view link (to front page) in re-order posts page.
  • Move ajax actions to its controller.
  • Move admin help tab contents to views file.
  • Use wp_send_json instead of echo and wp_die instead of exit.
  • Fix call to hook wp_insert_post.
  • Update hook new post class to always update scheduled posts number.
  • Make Polylang supported (on selected language and list posts).
  • Fix alter post on front pages main query only.
  • Update translation.

1.0.2

2021-12-14

  • Update WPListTable class based on WordPress 5.8.2.