Changeset 8757
- Timestamp:
- 08/27/08 21:35:54 (3 months ago)
- Files:
-
- trunk/wp-admin/edit-page-form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/edit-page-form.php
r8752 r8757 196 196 ?> 197 197 <label class="hidden" for="parent_id"><?php _e('Page Parent') ?></label> 198 <select name="parent_id" id="parent_id"> 199 <option value='0'><?php _e('Main Page (no parent)'); ?></option> 200 <?php parent_dropdown($post->post_parent); ?> 201 </select> 198 <?php wp_dropdown_pages(array('selected' => $post->post_parent, 'name' => 'parent_id', 'show_option_none' => __('Main Page (no parent)'))); ?> 202 199 <p><?php _e('You can arrange your pages in hierarchies, for example you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages.'); ?></p> 203 200 <?php
