summaryrefslogtreecommitdiff
path: root/readme.txt
diff options
context:
space:
mode:
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/readme.txt b/readme.txt
new file mode 100644
index 0000000..69ed5d6
--- /dev/null
+++ b/readme.txt
@@ -0,0 +1,25 @@
+=== Draggable Post Order ===
+Contributors: drogueronin
+Tags: post-type, custom-post-type, order, drag
+Requires at least: 5.5
+Tested up to: 5.6
+Stable tag: 1.0.0
+Requires PHP: 7.4
+License: GPLv2 or later
+License URI: https://www.gnu.org/licenses/gpl-2.0.html
+
+Drag'n'drop posts to order them
+
+== Description ==
+
+### Features
+
+- makes post types orderable in the admin screen via drag'n'drop with *jquery-ui-sortable*
+
+### How to use
+
+Add this to your **functions.php**
+
+`
+add_post_type_support('your-custom-post-type', \Draggable_Post_Order\Draggable_Post_Order::$post_type_feature);
+`