Changeset 41651 for trunk/src/wp-includes/post.php
- Timestamp:
- 09/30/2017 01:14:34 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r41642 r41651 194 194 'read_private_posts' => 'customize', 195 195 ), 196 ) ); 197 198 register_post_type( 'oembed_cache', array( 199 'labels' => array( 200 'name' => __( 'oEmbed Responses' ), 201 'singular_name' => __( 'oEmbed Response' ), 202 ), 203 'public' => false, 204 'hierarchical' => false, 205 'rewrite' => false, 206 'query_var' => false, 207 'delete_with_user' => false, 208 'can_export' => false, 209 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */ 210 'supports' => array(), 196 211 ) ); 197 212 … … 3004 3019 * @type array $post_category Array of category names, slugs, or IDs. 3005 3020 * Defaults to value of the 'default_category' option. 3006 * @type array $tags_input Array of tag names, slugs, or IDs. Default empty. 3021 * @type array $tags_input Array of tag names, slugs, or IDs. Default empty. 3007 3022 * @type array $tax_input Array of taxonomy terms keyed by their taxonomy name. Default empty. 3008 3023 * @type array $meta_input Array of post meta values keyed by their post meta key. Default empty.
Note: See TracChangeset
for help on using the changeset viewer.