Changeset 14713 for trunk/wp-includes/post.php
- Timestamp:
- 05/17/2010 04:39:36 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r14699 r14713 18 18 register_post_type( 'post', array( 19 19 'public' => true, 20 'show_ui' => false,21 20 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */ 22 21 '_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */ … … 30 29 register_post_type( 'page', array( 31 30 'public' => true, 32 'show_ui' => false,33 31 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */ 34 32 '_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */ … … 75 73 ), 76 74 'public' => false, 77 'show_ui' => false,78 75 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */ 79 76 'capability_type' => 'post',
Note: See TracChangeset
for help on using the changeset viewer.