update_right_now_text
Filters the text displayed in the 'At a Glance' dashboard widget.
Prior to 3.8.0, the widget was named 'Right Now'.
Usage
add_filter( 'update_right_now_text', 'wp_kama_update_right_now_text_filter' );
/**
* Function for `update_right_now_text` filter-hook.
*
* @param string $content Default text.
*
* @return string
*/
function wp_kama_update_right_now_text_filter( $content ){
// filter...
return $content;
}
- $content(string)
- Default text.
Changelog
| Since 4.4.0 | Introduced. |
Where the hook is called
update_right_now_text
wp-admin/includes/update.php 392
$content = apply_filters( 'update_right_now_text', $content );