update_right_now_text filter-hookWP 4.4.0

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_message()
update_right_now_text
wp-admin/includes/update.php 394
$content = apply_filters( 'update_right_now_text', $content );

Where the hook is used in WordPress

Usage not found.