gpt4 book ai didi

javascript - Jquery 可排序功能在 WordPress 中不起作用

转载 作者:行者123 更新时间:2023-11-28 13:22:09 25 4
gpt4 key购买 nike

这是我的代码

jQuery:

jQuery(document).ready(function(){
jQuery('#admin-page-wrapper ul').sortable({cursor: 'move'});

});

这是我的 jquery 排序顺序

 wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');

这是我的插件代码

<div id="admin-page-wrapper">
<h2>Published Pages</h2>
<?php
$pages = new WP_Query(array('post_type'=>'page','post_status'=>'publish','posts_per_page'=>'-1','order'=>'ASC'));
?>
<ul id="dashboard-page">
<?php if($pages -> have_posts()){
while($pages -> have_posts()){
$pages->the_post(); ?>
<li class="dashboard-item"><?php echo the_title(); ?></li>
<?php }
} ?>
</ul>
</div>

最佳答案

添加第三个脚本并将其添加为最后一个脚本:

wp_enqueue_script( 'jquery-ui-sortable');

您可以在此页面找到所有 WordPress 内置脚本的列表:

https://codex.wordpress.org/Function_Reference/wp_enqueue_script

关于javascript - Jquery 可排序功能在 WordPress 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32164291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com