2008-08-16 03:27:34 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Edit posts rows table for inclusion in administration panels.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2009-08-02 20:04:45 -04:00
|
|
|
// don't load directly
|
|
|
|
if ( !defined('ABSPATH') )
|
|
|
|
die('-1');
|
2008-08-16 03:27:34 -04:00
|
|
|
?>
|
2010-01-22 16:46:35 -05:00
|
|
|
<table class="widefat <?php echo $post_type == 'page' ? 'page' : 'post'; ?> fixed" cellspacing="0">
|
2007-08-23 18:19:53 -04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2010-01-15 11:58:36 -05:00
|
|
|
<?php print_column_headers( $current_screen ); ?>
|
2007-08-23 18:19:53 -04:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2008-09-10 18:47:03 -04:00
|
|
|
|
2008-09-29 05:26:21 -04:00
|
|
|
<tfoot>
|
|
|
|
<tr>
|
2010-01-15 11:58:36 -05:00
|
|
|
<?php print_column_headers($current_screen, false); ?>
|
2008-09-29 05:26:21 -04:00
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
|
|
|
|
<tbody>
|
2010-01-15 11:58:36 -05:00
|
|
|
<?php
|
|
|
|
if ( $post_type_object->hierarchical )
|
|
|
|
page_rows($posts, $pagenum, $per_page);
|
|
|
|
else
|
|
|
|
post_rows();
|
|
|
|
?>
|
2007-08-23 18:19:53 -04:00
|
|
|
</tbody>
|
2008-11-25 19:36:25 -05:00
|
|
|
</table>
|