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