WordPress/wp-admin/edit-post-rows.php
azaozz 339e87dc5c Batch editing, first cut, see #6815
git-svn-id: http://svn.automattic.com/wordpress/trunk@8973 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2008-09-25 13:42:34 +00:00

32 lines
465 B
PHP

<?php
/**
* Edit posts rows table for inclusion in administration panels.
*
* @package WordPress
* @subpackage Administration
*/
if ( ! defined('ABSPATH') ) die();
?>
<table class="widefat post">
<thead>
<tr>
<?php print_column_headers('post'); ?>
</tr>
</thead>
<tbody>
<?php
if ( have_posts() ) {
post_rows();
} else {
?>
<tr>
<td colspan="8"><?php _e('No posts found.') ?></td>
</tr>
<?php
} // end if ( have_posts() )
?>
</tbody>
</table>