Add `'update_right_now_text'` filter for the text displayed in the 'At a Glance' dashboard widget.
props obenland. fixes #33355. Built from https://develop.svn.wordpress.org/trunk@33832 git-svn-id: http://core.svn.wordpress.org/trunk@33800 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6a0818996d
commit
a53d6b471f
|
@ -254,7 +254,21 @@ function update_right_now_message() {
|
|||
$msg .= '<a href="' . network_admin_url( 'update-core.php' ) . '" class="button" aria-describedby="wp-version">' . sprintf( __( 'Update to %s' ), $cur->current ? $cur->current : __( 'Latest' ) ) . '</a> ';
|
||||
}
|
||||
|
||||
$msg .= sprintf( '<span id="wp-version">' . __( 'WordPress %1$s running %2$s theme.' ) . '</span>', get_bloginfo( 'version', 'display' ), $theme_name );
|
||||
/* translators: 1: version number, 2: theme name */
|
||||
$content = __( 'WordPress %1$s running %2$s theme.' );
|
||||
|
||||
/**
|
||||
* Filter the text displayed in the 'At a Glance' dashboard widget.
|
||||
*
|
||||
* Prior to 3.8.0, the widget was named 'Right Now'.
|
||||
*
|
||||
* @since 4.4.0
|
||||
*
|
||||
* @param string $content Default text.
|
||||
*/
|
||||
$content = apply_filters( 'update_right_now_text', $content );
|
||||
|
||||
$msg .= sprintf( '<span id="wp-version">' . $content . '</span>', get_bloginfo( 'version', 'display' ), $theme_name );
|
||||
|
||||
echo "<p id='wp-version-message'>$msg</p>";
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-33831';
|
||||
$wp_version = '4.4-alpha-33832';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue