in_theme_update_message-{$theme_key}

动作钩子
do_action( "in_theme_update_message-{$theme_key}", $theme, $response )
参数
  • (WP_Theme) $theme The WP_Theme object.
    Required:
  • (array) $response { An array of metadata about the available theme update. @type string $new_version New theme version. @type string $url Theme URL. @type string $package Theme update package URL. }
    Required:
定义位置
相关勾子
term_updated_messagesin_plugin_update_message-fileauto_theme_update_send_emailpost_updated_messagesbulk_post_updated_messages
相关方法
_maybe_update_themeslist_theme_updateswp_get_auto_update_messagewp_theme_update_rowswp_theme_auto_update_setting_templateget_intermediate_image_sizes
引入
3.1.0
弃用
-

in_theme_update_message- {$theme_key} – 这个动作钩子是在主题更新界面触发的,它允许你在主题更新信息中添加自定义信息。钩子名称中的{$theme_key}参数代表了主题密钥或标识符。

在主题列表表的每一行中的更新消息容器末尾触发。

钩子名称的动态部分$theme_key引用了WordPress.org主题库中的主题slug。

do_action( "in_theme_update_message-{$theme_key}", $theme, $response ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

常见问题

FAQs
查看更多 >