mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
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:
@@ -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