web/wp-admin/edit-post-rows.php
branchwordpress
changeset 109 03b0d1493584
child 132 4d4862461b8d
equal deleted inserted replaced
-1:000000000000 109:03b0d1493584
       
     1 <?php
       
     2 /**
       
     3  * Edit posts rows table for inclusion in administration panels.
       
     4  *
       
     5  * @package WordPress
       
     6  * @subpackage Administration
       
     7  */
       
     8 
       
     9 // don't load directly
       
    10 if ( !defined('ABSPATH') )
       
    11 	die('-1');
       
    12 ?>
       
    13 <table class="widefat post fixed" cellspacing="0">
       
    14 	<thead>
       
    15 	<tr>
       
    16 <?php print_column_headers('edit'); ?>
       
    17 	</tr>
       
    18 	</thead>
       
    19 
       
    20 	<tfoot>
       
    21 	<tr>
       
    22 <?php print_column_headers('edit', false); ?>
       
    23 	</tr>
       
    24 	</tfoot>
       
    25 
       
    26 	<tbody>
       
    27 <?php post_rows(); ?>
       
    28 	</tbody>
       
    29 </table>