Changeset 1224257
- Timestamp:
- 08/18/2015 10:20:39 PM (11 years ago)
- Location:
- custom-list-table-example/trunk
- Files:
-
- 2 edited
-
list-table-example.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-list-table-example/trunk/list-table-example.php
r843298 r1224257 4 4 Plugin URI: http://www.mattvanandel.com/ 5 5 Description: A highly documented plugin that demonstrates how to create custom List Tables using official WordPress APIs. 6 Version: 1. 37 Author: Matt Van Andel6 Version: 1.4 7 Author: Matt van Andel 8 8 Author URI: http://www.mattvanandel.com 9 9 License: GPL2 10 10 */ 11 /* Copyright 201 4Matthew Van Andel (email : matt@mattvanandel.com)11 /* Copyright 2015 Matthew Van Andel (email : matt@mattvanandel.com) 12 12 13 13 This program is free software; you can redistribute it and/or modify … … 81 81 * for use in your list table. For this example, we're going to simplify it 82 82 * slightly and create a pre-built array. Think of this as the data that might 83 * be returned by $wpdb->query(). 83 * be returned by $wpdb->query() 84 * 85 * In a real-world scenario, you would make your own custom query inside 86 * this class' prepare_items() method. 84 87 * 85 88 * @var array … … 127 130 'rating' => 'R', 128 131 'director' => 'Zach Snyder' 129 ) 132 ), 133 array( 134 'ID' => 8, 135 'title' => '2001', 136 'rating' => 'R', 137 'director' => 'Stanley Kubrick' 138 ), 130 139 ); 131 140 -
custom-list-table-example/trunk/readme.txt
r843298 r1224257 4 4 Tags: example, table, data, WP_List_Table, admin, plugin, list table 5 5 Requires at least: 3.5 6 Tested up to: 3.97 Stable tag: 1. 36 Tested up to: 4.3 7 Stable tag: 1.4 8 8 9 9 A highly documented plugin that demonstrates how to create custom admin list-tables using official WordPress techniques. … … 21 21 22 22 == Changelog == 23 24 = 1.4 = 25 * Minor addition to documentation. 26 * NOTE: No changes are required to maintain support with new list tables in WordPress 4.3! 23 27 24 28 = 1.3 =
Note: See TracChangeset
for help on using the changeset viewer.