WP列表表格的最佳替代方案

时间:2016-10-26 作者:Damithatt

根据Codex 不建议使用uss WP列表。那么,WP列表的最佳替代方案是什么?

1 个回复
SO网友:CodeMascot

除了这门课,我还没有找到最好的选择。这个WP_List_table 最好使用。但使用它的方法是担心。如果您阅读Codex Cafully你会看到一个警告-

This class\'s access is marked as private. That means it is not intended for use by plugin and theme developers as it is subject to change without warning in any future WordPress release. If you would still like to make use of the class, you should make a copy to use and distribute with your own project, or else use it at your own risk.

因此,从这里我们可以看到使用该类的最佳实践。Copy it, rename it with your prefix and use it in your solution. 通过使用这种方式,如果WordPress管理员更改了任何内容或使该类被弃用,您将很安全,这不会损害您的代码、系统或解决方案。

相关推荐

在管理员帖子wp-list-table之前/之后添加内容

我知道有两个钩子可以在分类法wp列表前后添加内容。是否有操作可在编辑上的post type wp list表格后添加内容。php页面?$taxonomy列表:add_action( \'category\' . \'_pre_add_form\', \'copy_above_form\' ); function copy_above_form( $taxonomy ) { echo \'<p>Above the WP-List-Table</p>\';&#x