update_{$meta_type}_metadata_cache

过滤钩子
apply_filters( "update_{$meta_type}_metadata_cache", null, $object_ids )
参数
  • (mixed) $check Whether to allow updating the meta cache of the given type.
    Required:
  • (int[]) $object_ids Array of object IDs to update the meta cache for.
    Required:
定义位置
相关勾子
update_meta_type_metadataupdate_meta_type_metadata_by_midupdate_meta_type_metaupdated_meta_type_metadelete_meta_type_metadata
相关方法
update_menu_item_cacheupdate_meta_cacheupdate_object_term_cacheupdate_term_cacheupdate_sitemeta_cacheupdate_termmeta_cache
引入
5.0.0
弃用
-

update_{$meta_type}_metadata_cache 是 WordPress 中的一个动作钩子,在元数据缓存更新后触发。 此钩子用于在缓存更新完成后执行额外的处理或日志记录。

缩短更新特定类型的元数据缓存的时间。

钩子名称的动态部分,$meta_type,指的是元对象类型(文章,评论,术语,用户,或任何其他有相关元表的类型)。返回一个非空值将有效地使该函数短路。

可能的钩子名称包括:

  • update_post_metadata_cache
  • update_comment_metadata_cache
  • update_term_metadata_cache
  • update_user_metadata_cache
$check = apply_filters( "update_{$meta_type}_metadata_cache", null, $object_ids );

常见问题

FAQs
查看更多 >