diff --git a/src/wp-includes/post-functions.php b/src/wp-includes/post-functions.php index 404d07cc6b..7c0786239a 100644 --- a/src/wp-includes/post-functions.php +++ b/src/wp-includes/post-functions.php @@ -1835,15 +1835,16 @@ function sanitize_post( $post, $context = 'display' ) { * are treated like 'display' when calling filters. * * @since 2.3.0 + * @since 4.4.0 Like `sanitize_post()`, `$context` defaults to 'display'. * * @param string $field The Post Object field name. * @param mixed $value The Post Object value. * @param int $post_id Post ID. - * @param string $context How to sanitize post fields. Looks for 'raw', 'edit', - * 'db', 'display', 'attribute' and 'js'. + * @param string $context Optional. How to sanitize post fields. Looks for 'raw', 'edit', + * 'db', 'display', 'attribute' and 'js'. Default 'display'. * @return mixed Sanitized value. */ -function sanitize_post_field($field, $value, $post_id, $context) { +function sanitize_post_field( $field, $value, $post_id, $context = 'display' ) { $int_fields = array('ID', 'post_parent', 'menu_order'); if ( in_array($field, $int_fields) ) $value = (int) $value;