Changeset 1551 for trunk/wp-admin/edit.php
- Timestamp:
- 08/22/2004 11:24:50 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit.php
r1536 r1551 3 3 4 4 $title = __('Posts'); 5 $parent_file = 'edit.php'; 5 6 require_once('admin-header.php'); 6 7 7 ?>8 <ul id="adminmenu2">9 <li><a href="edit.php" class="current"><?php _e('Posts') ?></a></li>10 <li><a href="edit-pages.php"><?php _e('Pages') ?></a></li>11 <li><a href="categories.php"><?php _e('Categories') ?></a></li>12 <li><a href="edit-comments.php"><?php _e('Comments') ?></a></li>13 <li><a href="moderation.php"><?php _e('Awaiting Moderation') ?></a></li>14 </ul>15 <?php16 8 get_currentuserinfo(); 17 9 $drafts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'draft' AND post_author = $user_ID");
Note: See TracChangeset
for help on using the changeset viewer.