theme_update_available()WP 2.7.0

Check if there is an update for a theme available.

Will display link, if there is an update available.

Хуков нет.

Возвращает

null. Ничего (null).

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

theme_update_available( $theme );
$theme(WP_Theme) (обязательный)
Theme data object.

Заметки

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

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

Код theme_update_available() WP 6.5.2

function theme_update_available( $theme ) {
	echo get_theme_update_available( $theme );
}