2008-08-16 07:27:34 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Edit posts rows table for inclusion in administration panels.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined('ABSPATH') ) die();
|
|
|
|
?>
|
2008-09-21 19:45:45 +00:00
|
|
|
<table class="widefat post">
|
2007-08-23 22:19:53 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2008-09-18 05:41:45 +00:00
|
|
|
<?php print_column_headers('post'); ?>
|
2007-08-23 22:19:53 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2008-02-27 00:46:27 +00:00
|
|
|
<tbody>
|
2008-09-10 22:47:03 +00:00
|
|
|
|
|
|
|
<?php inline_edit_row( 'post' ) ?>
|
|
|
|
|
2007-08-23 22:19:53 +00:00
|
|
|
<?php
|
|
|
|
if ( have_posts() ) {
|
2008-08-25 20:21:27 +00:00
|
|
|
post_rows();
|
2007-08-23 22:19:53 +00:00
|
|
|
} else {
|
|
|
|
?>
|
2008-08-25 20:21:27 +00:00
|
|
|
<tr>
|
2007-09-03 23:32:58 +00:00
|
|
|
<td colspan="8"><?php _e('No posts found.') ?></td>
|
|
|
|
</tr>
|
2007-08-23 22:19:53 +00:00
|
|
|
<?php
|
|
|
|
} // end if ( have_posts() )
|
|
|
|
?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|