Rev | Line | |
---|
[44] | 1 | <?php
|
---|
| 2 | /**
|
---|
| 3 | * Edit posts rows table for inclusion in administration panels.
|
---|
| 4 | *
|
---|
| 5 | * @package WordPress
|
---|
| 6 | * @subpackage Administration
|
---|
| 7 | */
|
---|
| 8 |
|
---|
| 9 | if ( ! defined('ABSPATH') ) die();
|
---|
| 10 | ?>
|
---|
| 11 | <table class="widefat post fixed" cellspacing="0">
|
---|
| 12 | <thead>
|
---|
| 13 | <tr>
|
---|
| 14 | <?php print_column_headers('edit'); ?>
|
---|
| 15 | </tr>
|
---|
| 16 | </thead>
|
---|
| 17 |
|
---|
| 18 | <tfoot>
|
---|
| 19 | <tr>
|
---|
| 20 | <?php print_column_headers('edit', false); ?>
|
---|
| 21 | </tr>
|
---|
| 22 | </tfoot>
|
---|
| 23 |
|
---|
| 24 | <tbody>
|
---|
| 25 | <?php post_rows(); ?>
|
---|
| 26 | </tbody>
|
---|
| 27 | </table>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.