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本身或外掛使用的,不應該被使用者改變。

過濾一個元金鑰是否被認為是受保護的。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
return apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type );
return apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type );
return apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type );

常見問題

FAQs
檢視更多 >