From a6568404e9abd2222f088cae36c4990b771f306d Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 28 Jun 2021 16:54:32 +0900 Subject: [PATCH] =?UTF-8?q?WP=20PLUGIN=E3=80=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ・ライブラリインクルードが外れていたため修正 --- archive-post-order-plus.php | 1 + 1 file changed, 1 insertion(+) diff --git a/archive-post-order-plus.php b/archive-post-order-plus.php index 200754a..124f371 100644 --- a/archive-post-order-plus.php +++ b/archive-post-order-plus.php @@ -40,6 +40,7 @@ function apop_register_my_styles() { wp_enqueue_style( 'jq_ui_css', APOP_PLUGIN_URL . 'css/jquery-ui.css' ); wp_enqueue_style( 'hrc_post_style', APOP_PLUGIN_URL . 'css/apop-style.css' ); wp_enqueue_script( 'jquery-ui-sortable' ); + wp_enqueue_script( 'jquery-ui-autocomplete' ); wp_enqueue_script( 'post-sort-cat-order_js', APOP_PLUGIN_URL . 'js/apop-style.js' ); }