diff options
author | Daniel Weipert <code@drogueronin.de> | 2020-12-24 15:43:29 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2020-12-24 15:43:29 +0100 |
commit | 3e0721eb5d64ef49b5e2d99f22195af8aef0fcb8 (patch) | |
tree | 570db99f691c3b9022356aef02f66553e7a2a1c2 /draggable-post-order.php | |
parent | 0d1da4356173e926fdcac42462daa4fcb7617109 (diff) |
Post-initial commit
Diffstat (limited to 'draggable-post-order.php')
-rw-r--r-- | draggable-post-order.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/draggable-post-order.php b/draggable-post-order.php index 80abf34..026b1c1 100644 --- a/draggable-post-order.php +++ b/draggable-post-order.php @@ -19,7 +19,7 @@ require __DIR__ . '/vendor/autoload.php'; /** - * Callback for "init" action + * Callback for "init" action. */ function draggable_post_order() { \Draggable_Post_Order\Draggable_Post_Order::init(); @@ -27,7 +27,7 @@ function draggable_post_order() { add_action( 'init', 'draggable_post_order' ); /** - * URL to enqueue scripts and styles + * URL to enqueue scripts and styles. * * @param string $path Relative path inside the build folder. * @@ -38,7 +38,7 @@ function draggable_post_order_assets_url( $path ) { } /** - * Absolute path to plugin folder + * Absolute path to plugin folder. * * @return string */ |