如何创建管理页面,编辑自定义表格WP_List_Table
中的单个项目?
数据:自定义数据库表,在管理员我添加了菜单项,其中包含通过WP_List_Table
构建此表的方法。
在那里,我想创建“管理”按钮,以管理此表中的单个项目。
我该怎么做?
我尝试添加类似菜单项,但如何在不添加菜单的情况下添加它?父母add_submenu_page
的{{1}}是否真的很清楚WP解决方案?
答案 0 :(得分:1)
对于我的情况很好的解决方案:
if ( array_key_exists( 'single', $_REQUEST ) ) {
//function to process single item
} else {
//Create an instance of our package class...
$withdraw = new Class_Table();
//Fetch, prepare, sort, and filter our data...
$withdraw->prepare_items();
}