WordPress使用ajax删除文章教程

很多用户想要快速的删除文章,今天分享一个WordPress使用ajax删除文章教程,直接上代码,将下面的代码添加到当前启用的WordPress主题的functions.php里面。

WordPress使用ajax删除文章教程 (https://www.wpzt.net/) WordPress基础教程 第1张

// 后台 文章列表 ajax删除文章

add_action( ‘admin_footer’, ‘dahuzi_cus***_internal_javascript’ );

function dahuzi_cus***_internal_javascript(){

echo “<script>

jQuery(function($){

$(‘body.post-type-post .row-actions .trash a’).click(function( event ){

event.preventDefault();

var url = new URL( $(this).attr(‘href’) ),

nonce = url.searchPar**s.get(‘_wpnonce’), // MUST for security checks

row = $(this).closest(‘tr’),

postID = url.searchPar**s.get(‘post’),

postTitle = row.find(‘.row-title’).text();

row.css(‘background-color’,’#ffafaf’).fadeOut(300, function(){

row.removeAttr(‘style’).html(‘<td colspan=\’5\’ style=\’background:#fff;border-left:1px solid #FF5722;border-left-width:4px;color:#555\’><strong>’ + postTitle + ‘</strong> 已被移动到回收站</td>’).show();

});

$.ajax({

method:’POST’,

url: ajaxurl,

data: {

‘action’ : ‘moveposttotrash’,

‘post_id’ : postID,

‘_wpnonce’ : nonce

}

});

});

});

</script>”;

}

add_action(‘wp_ajax_moveposttotrash’, function(){

check_ajax_referer( ‘trash-post_’ . $_POST[‘post_id’] );

wp_trash_post( $_POST[‘post_id’] );

***();

});

如果你想将这个功能用于自定义文章分类,将代码中的 .post-type-post,替换成 .post-type-{post-type-n**e}

这里我使用的URL API在较旧的浏览器中不起作用,对我来说无所谓,因为我使用的是Chrome浏览器,所以可以。你可以在此处检查浏览器的兼容性。

© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容