public
Description: WordPress Releases
Homepage: http://www.wordpress.org/
Clone URL: git://github.com/ianloic/wordpress.git
wordpress / wp-admin / edit-post-rows.php
100644 27 lines (24 sloc) 0.424 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
* Edit posts rows table for inclusion in administration panels.
*
* @package WordPress
* @subpackage Administration
*/
 
if ( ! defined('ABSPATH') ) die();
?>
<table class="widefat post fixed" cellspacing="0">
<thead>
<tr>
<?php print_column_headers('edit'); ?>
</tr>
</thead>
 
<tfoot>
<tr>
<?php print_column_headers('edit', false); ?>
</tr>
</tfoot>
 
<tbody>
<?php post_rows(); ?>
</tbody>
</table>