mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
9f27224a27
git-svn-id: http://svn.automattic.com/wordpress/trunk@8729 1a063a9b-81f0-0310-95a4-ce76da25c4cd
43 lines
806 B
PHP
43 lines
806 B
PHP
<?php
|
|
/**
|
|
* Edit posts rows table for inclusion in administration panels.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
if ( ! defined('ABSPATH') ) die();
|
|
?>
|
|
<table class="widefat">
|
|
<thead>
|
|
<tr>
|
|
|
|
<?php $posts_columns = wp_manage_posts_columns(); ?>
|
|
<?php foreach($posts_columns as $post_column_key => $column_display_name) {
|
|
if ( 'cb' === $post_column_key )
|
|
$class = ' class="check-column"';
|
|
elseif ( 'comments' === $post_column_key )
|
|
$class = ' class="num"';
|
|
else
|
|
$class = '';
|
|
?>
|
|
<th scope="col"<?php echo $class; ?>><?php echo $column_display_name; ?></th>
|
|
<?php } ?>
|
|
|
|
</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>
|