update_right_now_text
云策文档标注
概述
update_right_now_text 是一个 WordPress 过滤器钩子,用于修改‘At a Glance’仪表板小部件中显示的文本。该小部件在 3.8.0 版本前名为‘Right Now’。
关键要点
- 过滤器钩子:update_right_now_text
- 用途:过滤‘At a Glance’仪表板小部件的文本内容
- 参数:$content(字符串,默认文本)
- 相关函数:update_right_now_message() 用于显示 WordPress 版本和活动主题
- 引入版本:4.4.0
原文内容
Filters the text displayed in the ‘At a Glance’ dashboard widget.
Description
Prior to 3.8.0, the widget was named ‘Right Now’.
Parameters
$contentstring-
Default text.
Source
$content = apply_filters( 'update_right_now_text', $content );
Changelog
| Version | Description |
|---|---|
| 4.4.0 | Introduced. |