Merge edit-pages.php into edit.php. see #9674
git-svn-id: http://svn.automattic.com/wordpress/trunk@12728 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user