diff options
author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2006-06-07 14:28:14 +0000 |
---|---|---|
committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2006-06-07 14:28:14 +0000 |
commit | 9d42ec4ee5db0437e9ad14b793f044fa0f5de8fe (patch) | |
tree | a0bb93e81f1856204377f936a97a8a285f77f2b7 /wp-inst/wp-admin/edit-pages.php | |
parent | 16cdc878fce216364bd57f498baeeb1b94ca8662 (diff) | |
download | wordpress-mu-9d42ec4ee5db0437e9ad14b793f044fa0f5de8fe.tar.gz wordpress-mu-9d42ec4ee5db0437e9ad14b793f044fa0f5de8fe.tar.xz wordpress-mu-9d42ec4ee5db0437e9ad14b793f044fa0f5de8fe.zip |
WP Merge and new features
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@550 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-admin/edit-pages.php')
-rw-r--r-- | wp-inst/wp-admin/edit-pages.php | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/wp-inst/wp-admin/edit-pages.php b/wp-inst/wp-admin/edit-pages.php index 2e25f53..ce169b8 100644 --- a/wp-inst/wp-admin/edit-pages.php +++ b/wp-inst/wp-admin/edit-pages.php @@ -2,7 +2,7 @@ require_once('admin.php'); $title = __('Pages'); $parent_file = 'edit.php'; -$list_js = true; +wp_enqueue_script( 'listman' ); require_once('admin-header.php'); ?> @@ -19,7 +19,7 @@ require_once('admin-header.php'); </form> <?php -wp('post_type=page&orderby=menu_order&what_to_show=posts&posts_per_page=15&posts_per_archive_page=-1'); +wp('post_type=page&orderby=menu_order&what_to_show=posts&posts_per_page=-1&posts_per_archive_page=-1'); if ( $_GET['s'] ) $all = false; @@ -28,28 +28,25 @@ else if ($posts) { ?> -<table id="the-list-x" width="100%" cellpadding="3" cellspacing="3"> - <tr> - <th scope="col"><?php _e('ID') ?></th> - <th scope="col"><?php _e('Title') ?></th> - <th scope="col"><?php _e('Owner') ?></th> - <th scope="col"><?php _e('Updated') ?></th> - <th scope="col"></th> - <th scope="col"></th> - <th scope="col"></th> - </tr> +<table class="widefat"> + <thead> + <tr> + <th scope="col"><?php _e('ID') ?></th> + <th scope="col" style="text-align: left"><?php _e('Title') ?></th> + <th scope="col" style="text-align: left"><?php _e('Owner') ?></th> + <th scope="col" style="text-align: left"><?php _e('Updated') ?></th> + <th scope="col" colspan="3"><?php _e('Action'); ?></th> + </tr> + </thead> + <tbody id="the-list"> <?php page_rows(0, 0, $posts, $all); ?> -</table> + </tbody> +</table> <div id="ajax-response"></div> -<div class="navigation"> -<div class="alignleft"><?php next_posts_link(__('« Previous Entries')) ?></div> -<div class="alignright"><?php previous_posts_link(__('Next Entries »')) ?></div> -</div> - <?php } else { ?> |