Uses
Uses | Description |
---|---|
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/meta.php: is_protected_meta | Filters whether a meta key is considered protected. |
Determines whether a meta key is considered protected.
(string) (Required) Metadata key.
(string) (Optional) Type of object metadata is for. Accepts 'post', 'comment', 'term', 'user', or any other object type with an associated meta table.
Default value: ''
(bool) Whether the meta key is considered protected.
File: wp-includes/meta.php
function is_protected_meta( $meta_key, $meta_type = '' ) { $protected = ( '_' === $meta_key[0] ); /** * Filters whether a meta key is considered protected. * * @since 3.2.0 * * @param bool $protected Whether the key is considered protected. * @param string $meta_key Metadata key. * @param string $meta_type Type of object metadata is for. Accepts 'post', 'comment', 'term', 'user', * or any other object type with an associated meta table. */ return apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type ); }
Version | Description |
---|---|
3.1.3 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/is_protected_meta