Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: is_protected_meta

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1034      /**
1035       * Filters whether a meta key is considered protected.
1036       *
1037       * @since 3.2.0
1038       *
1039       * @param bool        $protected Whether the key is considered protected.
1040       * @param string      $meta_key  Meta key.
1041       * @param string|null $meta_type Type of object metadata is for (e.g., comment, post, term, or user).
1042       */
1043      return apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type );
1044 }
1045
1046 /**
1047  * Sanitize meta value.
1048  *
1049  * @since 3.1.3
1050  * @since 4.9.8 The `$object_subtype` parameter was added.
1051  *
1052  * @param string $meta_key       Meta key.