Make WordPress Core

Ticket #26698: improve-add_meta_box-docblocks.diff

File improve-add_meta_box-docblocks.diff, 1.0 KB (added by philiparthurmoore, 13 years ago)
  • src/wp-admin/includes/template.php

     
    806806 * @param string $title Title of the meta box.
    807807 * @param string $callback Function that fills the box with the desired content. The function should echo its output.
    808808 * @param string|object $screen Optional. The screen on which to show the box (post, page, link). Defaults to current screen.
    809  * @param string $context Optional. The context within the page where the boxes should show ('normal', 'advanced').
     809 * @param string $context Optional. The context within the page where the boxes should show ('normal', 'advanced', 'side').
    810810 * @param string $priority Optional. The priority within the context where the boxes should show ('high', 'low').
    811811 * @param array $callback_args Optional. Data that should be set as the "args" property of the box array (which is the second parameter passed to your callback).
    812812 */