bulk_post_updated_messages

过滤钩子
apply_filters( 'bulk_post_updated_messages', $bulk_messages, $bulk_counts )
参数
  • (array[]) $bulk_messages Arrays of messages, each keyed by the corresponding post type. Messages are keyed with 'updated', 'locked', 'deleted', 'trashed', and 'untrashed'.
    Required:
  • (int[]) $bulk_counts Array of item counts for each message, used to build internationalized strings.
    Required:
定义位置
相关勾子
post_updated_messagesterm_updated_messagescomment_duplicate_messagenetwork_sites_updated_message_actionin_plugin_update_message-file
相关方法
wp_get_auto_update_messagerender_block_core_post_featured_imagewp_update_themesget_post_gallery_imagesget_post_datetimeupdate_right_now_message
引入
3.7.0
弃用
-

bulk_post_updated_messages: 这是WordPress的一个过滤钩,允许开发者修改文章、页面或自定义文章类型的批量更新后显示的默认信息。bulk_post_updated_messages钩子将默认信息作为一个参数传递,钩子函数可以返回一个修改后的信息数组来代替。这对于改变批量更新后显示的信息的外观或行为很有用。

过滤批量行动的更新信息。

默认情况下,自定义文章类型使用”文章”文章类型的信息。

$bulk_messages = apply_filters( 'bulk_post_updated_messages', $bulk_messages, $bulk_counts );

常见问题

FAQs
查看更多 >