| 898 | | * @param string $id String for use in the 'id' attribute of tags. |
| 899 | | * @param string $title Title of the meta box. |
| 900 | | * @param callback $callback Function that fills the box with the desired content. |
| 901 | | * The function should echo its output. |
| 902 | | * @param string|WP_Screen $screen Optional. The screen on which to show the box (like a post |
| 903 | | * type, 'link', or 'comment'). Default is the current screen. |
| 904 | | * @param string $context Optional. The context within the screen where the boxes |
| 905 | | * should display. Available contexts vary from screen to |
| 906 | | * screen. Post edit screen contexts include 'normal', 'side', |
| 907 | | * and 'advanced'. Comments screen contexts include 'normal' |
| 908 | | * and 'side'. Menus meta boxes (accordion sections) all use |
| 909 | | * the 'side' context. Global default is 'advanced'. |
| 910 | | * @param string $priority Optional. The priority within the context where the boxes |
| 911 | | * should show ('high', 'low'). Default 'default'. |
| 912 | | * @param array $callback_args Optional. Data that should be set as the $args property |
| 913 | | * of the box array (which is the second parameter passed |
| 914 | | * to your callback). Default null. |
| | 898 | * @param string $id String for use in the 'id' attribute of tags. |
| | 899 | * @param string $title Title of the meta box. |
| | 900 | * @param callback $callback Function that fills the box with the desired content. |
| | 901 | * The function should echo its output. |
| | 902 | * @param string|WP_Screen|array $screen Optional. The screen on which to show the box (like a post |
| | 903 | * type, 'link', or 'comment'). Default is the current screen. |
| | 904 | * @param string $context Optional. The context within the screen where the boxes |
| | 905 | * should display. Available contexts vary from screen to |
| | 906 | * screen. Post edit screen contexts include 'normal', 'side', |
| | 907 | * and 'advanced'. Comments screen contexts include 'normal' |
| | 908 | * and 'side'. Menus meta boxes (accordion sections) all use |
| | 909 | * the 'side' context. Global default is 'advanced'. |
| | 910 | * @param string $priority Optional. The priority within the context where the boxes |
| | 911 | * should show ('high', 'low'). Default 'default'. |
| | 912 | * @param array $callback_args Optional. Data that should be set as the $args property |
| | 913 | * of the box array (which is the second parameter passed |
| | 914 | * to your callback). Default null. |