Filter hook 'is_protected_meta'

in WP Core File wp-includes/meta.php at line 1299

Description

Filters whether a meta key is considered protected.

Occurrences

Filename Line Number
wp-includes/meta.php 1299

Parameters

Type Name Description
bool $protected Whether the key is considered protected.
string $meta_key Metadata key.
string $meta_type Type of object metadata is for. Accepts 'post', 'comment', 'term', 'user', or any other object type with an associated meta table.

PHP Doc

/**
	 * 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.
	 */