update_right_now_text хук-фильтрWP 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'.

Использование

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(строка)
Default text.

Список изменений

С версии 4.4.0 Введена.

Где вызывается хук

update_right_now_message()
update_right_now_text
wp-admin/includes/update.php 395
$content = apply_filters( 'update_right_now_text', $content );

Где используется хук в WordPress

Использование не найдено.