Changeset 35903 for trunk/src/wp-includes/post.php
- Timestamp:
- 12/13/2015 07:17:10 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r35868 r35903 111 111 112 112 register_post_status( 'publish', array( 113 'label' => _x( 'Published', 'post ' ),113 'label' => _x( 'Published', 'post status' ), 114 114 'public' => true, 115 115 '_builtin' => true, /* internal use only. */ … … 118 118 119 119 register_post_status( 'future', array( 120 'label' => _x( 'Scheduled', 'post ' ),120 'label' => _x( 'Scheduled', 'post status' ), 121 121 'protected' => true, 122 122 '_builtin' => true, /* internal use only. */ … … 125 125 126 126 register_post_status( 'draft', array( 127 'label' => _x( 'Draft', 'post ' ),127 'label' => _x( 'Draft', 'post status' ), 128 128 'protected' => true, 129 129 '_builtin' => true, /* internal use only. */ … … 132 132 133 133 register_post_status( 'pending', array( 134 'label' => _x( 'Pending', 'post ' ),134 'label' => _x( 'Pending', 'post status' ), 135 135 'protected' => true, 136 136 '_builtin' => true, /* internal use only. */ … … 139 139 140 140 register_post_status( 'private', array( 141 'label' => _x( 'Private', 'post ' ),141 'label' => _x( 'Private', 'post status' ), 142 142 'private' => true, 143 143 '_builtin' => true, /* internal use only. */ … … 146 146 147 147 register_post_status( 'trash', array( 148 'label' => _x( 'Trash', 'post ' ),148 'label' => _x( 'Trash', 'post status' ), 149 149 'internal' => true, 150 150 '_builtin' => true, /* internal use only. */
Note: See TracChangeset
for help on using the changeset viewer.