update_right_now_text
Filters the text displayed in the 'At a Glance' dashboard widget.
Description
Prior to 3.8.0, the widget was named Right Now..
Parameters (1)
- 0. $content (string)
- Default text.
Usage
- To run the hook, copy the example below.
- $content = apply_filters( 'update_right_now_text', $content );
- if ( !empty( $content ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the update_right_now_text callback
- function filter_update_right_now_text( $content ) {
- // make filter magic happen here...
- return $content;
- };
- // add the filter
- add_filter( 'update_right_now_text', 'filter_update_right_now_text', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'update_right_now_text', 'filter_update_right_now_text', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-admin/includes/update.php
- $content = apply_filters( 'update_right_now_text', $content );