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鉤子將預設資訊作為一個引數傳遞,鉤子函式可以返回一個修改後的資訊陣列來代替。這對於改變批量更新後顯示的資訊的外觀或行為很有用。

過濾批量行動的更新資訊。

預設情況下,自定義文章型別使用”文章”文章型別的資訊。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$bulk_messages = apply_filters( 'bulk_post_updated_messages', $bulk_messages, $bulk_counts );
$bulk_messages = apply_filters( 'bulk_post_updated_messages', $bulk_messages, $bulk_counts );
$bulk_messages = apply_filters( 'bulk_post_updated_messages', $bulk_messages, $bulk_counts );

常見問題

FAQs
檢視更多 >