is_protected_meta

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!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: