Definition:
function is_protected_meta( $meta_key, $meta_type = null ) {}
Determine whether a meta key is protected
Parameters
- string $meta_key: Meta key
- $meta_type
Return values
returns:True if the key is protected, false otherwise.
Defined filters
- is_protected_meta
apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type )
Source code
function is_protected_meta( $meta_key, $meta_type = null ) { $protected = ( '_' == $meta_key[0] ); return apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type ); }
14227
No comments yet... Be the first to leave a reply!