Merge edit-pages.php into edit.php. see #9674

git-svn-id: https://develop.svn.wordpress.org/trunk@12728 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2010-01-15 16:58:36 +00:00
parent 2f72315628
commit b74bea8a2c
21 changed files with 321 additions and 662 deletions

View File

@@ -13,17 +13,22 @@ if ( !defined('ABSPATH') )
<table class="widefat post fixed" cellspacing="0">
<thead>
<tr>
<?php print_column_headers('edit'); ?>
<?php print_column_headers( $current_screen ); ?>
</tr>
</thead>
<tfoot>
<tr>
<?php print_column_headers('edit', false); ?>
<?php print_column_headers($current_screen, false); ?>
</tr>
</tfoot>
<tbody>
<?php post_rows(); ?>
<?php
if ( $post_type_object->hierarchical )
page_rows($posts, $pagenum, $per_page);
else
post_rows();
?>
</tbody>
</table>