Changeset 49790 for trunk/src/wp-includes/class-wp-post-type.php
- Timestamp:
- 12/10/2020 11:57:29 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-post-type.php
r49789 r49790 41 41 * 42 42 * @since 4.6.0 43 * @var object$labels43 * @var stdClass $labels 44 44 */ 45 45 public $labels; … … 159 159 160 160 /** 161 * The URL to the icon to be used for this menu.161 * The URL or reference to the icon to be used for this menu. 162 162 * 163 163 * Pass a base64-encoded SVG using a data URI, which will be colored to match the color scheme. … … 318 318 * 319 319 * @since 4.6.0 320 * @var object$cap320 * @var stdClass $cap 321 321 */ 322 322 public $cap; … … 381 381 /** 382 382 * Constructor. 383 * 384 * See the register_post_type() function for accepted arguments for `$args`. 383 385 * 384 386 * Will populate object properties from the provided arguments and assign other … … 401 403 /** 402 404 * Sets post type properties. 405 * 406 * See the register_post_type() function for accepted arguments for `$args`. 403 407 * 404 408 * @since 4.6.0 … … 415 419 * 416 420 * @param array $args Array of arguments for registering a post type. 421 * See the register_post_type() function for accepted arguments. 417 422 * @param string $post_type Post type key. 418 423 */
Note: See TracChangeset
for help on using the changeset viewer.