最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - Custom wp_list_tables redirect on specfic page

programmeradmin2浏览0评论

I have created a custom plugin and added the wp_list_tables and added some bulk actions, What I want to achieve when user select fields it should go on another page where, I can get all selected id's. Currently it's going in process_bulk_action and from there I am redirecting on anther page using get method is there any way to redirect all data using post method or direct submit on that page?

 public function process_bulk_action() {
...........
            $url = admin_url('admin.php?page=youthclub'); 
             if('bulk-sms' === $this->current_action() && isset($_POST['bulk-delete']) ) {
                $export_ids = implode('-',esc_sql( $_POST['bulk-delete'] ));
                $url_3= admin_url('admin.php?page=send-bulk-sms&ids='.$export_ids); 
                self::redirect($url_3);
            }
        }
发布评论

评论列表(0)

  1. 暂无评论