Changeset 28499
- Timestamp:
- 05/19/2014 03:22:21 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r28391 r28499 343 343 * @since 3.1.0 344 344 * 345 * @param object $post 345 * @param WP_Post $post Post object. 346 * @param array $box { 347 * Post formats meta box arguments. 348 * 349 * @type string $id Meta box ID. 350 * @type string $title Meta box title. 351 * @type callback $callback Meta box display callback. 352 * @type array $args Extra meta box arguments. 353 * } 346 354 */ 347 355 function post_format_meta_box( $post, $box ) { … … 371 379 * @since 2.6.0 372 380 * 373 * @param object $post 381 * @todo Create taxonomy-agnostic wrapper for this. 382 * 383 * @param WP_Post $post Post object. 384 * @param array $box { 385 * Tags meta box arguments. 386 * 387 * @type string $id Meta box ID. 388 * @type string $title Meta box title. 389 * @type callback $callback Meta box display callback. 390 * @type array $args { 391 * Extra meta box arguments. 392 * 393 * @type string $taxonomy Taxonomy. Default 'post_tag'. 394 * } 395 * } 374 396 */ 375 397 function post_tags_meta_box( $post, $box ) { … … 415 437 * @since 2.6.0 416 438 * 417 * @param object $post 439 * @todo Create taxonomy-agnostic wrapper for this. 440 * 441 * @param WP_Post $post Post object. 442 * @param array $box { 443 * Categories meta box arguments. 444 * 445 * @type string $id Meta box ID. 446 * @type string $title Meta box title. 447 * @type callback $callback Meta box display callback. 448 * @type array $args { 449 * Extra meta box arguments. 450 * 451 * @type string $taxonomy Taxonomy. Default 'category'. 452 * } 453 * } 418 454 */ 419 455 function post_categories_meta_box( $post, $box ) {
Note: See TracChangeset
for help on using the changeset viewer.