在这里我不明白传递的意义是什么$page
是否使用admin\\u print\\u脚本?
我的代码如下:
$page = add_submenu_page(\'edit.php?post_type=\' . $post_type, __(\'text\', \'plugin-dir-name\'), __(\'text\', \'plugin-dir-name\'), \'edit_posts\', \'text_\' . $post_type, array(&$this, \'text_list_admin\'));
add_action( "admin_print_scripts-$page", array(&$this, \'text_scripts\'));
我读过
http://codex.wordpress.org/Plugin_API/Action_Reference/admin_print_scripts-%28hookname%29
http://codex.wordpress.org/Plugin_API/Action_Reference/admin_print_scripts
但是他们之间有什么区别呢?
Update
我想添加这些脚本
http://domain.com/wp-admin/edit.php?post_type=shop_order&page=member_list&type=order_cal我什么时候给你$page=\'shop_order_page_member_list\';
它适用于所有member\\u列表页面,但我想应用于Speci页面,所以我尝试了$page=\'shop_order_page_member_list_type_order_cal\';
但它不起作用