is_protected_meta

过滤钩子
apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type )
参数
  • (bool) $protected Whether the key is considered protected.
    Required:
  • (string) $meta_key Metadata key.
    Required:
  • (string) $meta_type Type of object metadata is for. Accepts 'post', 'comment', 'term', 'user', or any other object type with an associated meta table.
    Required:
定义位置
相关勾子
is_protected_endpointpopulate_site_metainsert_user_metawp_protected_ajax_actionswp_is_site_protected_by_basic_auth
相关方法
is_protected_metais_protected_endpointis_protected_ajax_action_deprecated_argumentpopulate_site_metaregister_term_meta
引入
3.2.0
弃用
-

is_protected_meta – 这个函数用来确定一个元键是否被保护,不应该被用户修改。受保护的元键通常是由WordPress本身或插件使用的,不应该被用户改变。

过滤一个元密钥是否被认为是受保护的。

return apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type );

常见问题

FAQs
查看更多 >