paused_themes_notice()WP 5.2.0

Renders an admin notice in case some themes have been paused due to errors.

Хуков нет.

Возвращает

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

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

paused_themes_notice();

Заметки

  • Global. Строка. $pagenow The filename of the current screen.

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

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

Код paused_themes_notice() WP 6.3.1

function paused_themes_notice() {
	if ( 'themes.php' === $GLOBALS['pagenow'] ) {
		return;
	}

	if ( ! current_user_can( 'resume_themes' ) ) {
		return;
	}

	if ( ! isset( $GLOBALS['_paused_themes'] ) || empty( $GLOBALS['_paused_themes'] ) ) {
		return;
	}

	printf(
		'<div class="notice notice-error"><p><strong>%s</strong><br>%s</p><p><a href="%s">%s</a></p></div>',
		__( 'One or more themes failed to load properly.' ),
		__( 'You can find more details and make changes on the Themes screen.' ),
		esc_url( admin_url( 'themes.php' ) ),
		__( 'Go to the Themes screen' )
	);
}