WordPress有一些core附带的库,您可以在此处查看列表:Default Scripts Included and Registered by WordPress. 你要找的是Draggable, Sortable, 对你来说Droppable.
您将使用wp_enqueue_script()
这样添加:
wp_enqueue_script( \'jquery-ui-droppable\' );
WordPress使用一个句柄注册这些脚本,您可以使用该句柄添加它们,可以在上面的第一个链接中找到脚本句柄列表。您仍然需要连接到
admin panel and add the script:
function load_custom_wp_admin_style() {
wp_enqueue_script( \'jquery-ui-droppable\' );
}
add_action( \'admin_enqueue_scripts\', \'load_custom_wp_admin_style\' );