You appear to be a bot. Output may be restricted
Description
Callback to amend the Right Now text, found in the At A Glance dashboard widget.
Usage
$string = genesis_update_right_now_text( $content );
Parameters
- $content
- ( string ) required – Existing Right Now text.
Returns
string Amended Right Now text.
Source
File name: genesis/lib/admin/dashboard.php
Lines:
1 to 10 of 10
function genesis_update_right_now_text( $content ) { $string = sprintf( /* translators: %s: Genesis theme version */ esc_html__( ' Using Genesis %s.', 'genesis' ), PARENT_THEME_VERSION ); return $content . $string; }