| | 927 | /** |
| | 928 | * Filter the meta box context. |
| | 929 | * |
| | 930 | * @since 4.1.0 |
| | 931 | * |
| | 932 | * @param string $context The context within the screen where the meta box |
| | 933 | * should display. Possible values depending on the |
| | 934 | * current screen are 'normal', 'side' and 'advanced'. |
| | 935 | * @param string $id Meta box ID. |
| | 936 | * @param string $page The screen ID on which to display the meta box. |
| | 937 | */ |
| | 938 | $context = apply_filters( 'meta_box_context', $context, $id, $page ); |
| | 939 | |
| | 940 | /** |
| | 941 | * Filter the meta box priority. |
| | 942 | * |
| | 943 | * @since 4.1.0 |
| | 944 | * |
| | 945 | * @param string $priority The priority within the context of the meta box. |
| | 946 | * This can be either 'high', 'core', 'default' or |
| | 947 | * 'low'. |
| | 948 | * @param string $id Meta box ID. |
| | 949 | * @param string $page The screen ID on which to display the meta box. |
| | 950 | */ |
| | 951 | $priority = apply_filters( 'meta_box_priority', $priority, $id, $page ); |
| | 952 | |