yoast_wpseo_activation_failed_notice()Yoast 1.0

Echo's the Activation failed notice with any given message.

Хуков нет.

Возвращает

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

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

yoast_wpseo_activation_failed_notice( $message );
$message(строка) (обязательный)
Message string.

Код yoast_wpseo_activation_failed_notice() Yoast 28.2

function yoast_wpseo_activation_failed_notice( $message ) {
	$title = sprintf(
		/* translators: %s: Yoast SEO. */
		esc_html__( '%s activation failed', 'wordpress-seo' ),
		'Yoast SEO',
	);

	// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- This function is only called in 3 places that are safe.
	echo '<div class="error yoast-migrated-notice"><h4 class="yoast-notice-migrated-header">' . $title . '</h4><div class="notice-yoast-content"><p>' . strip_tags( $message, '<a>' ) . '</p></div></div>';
}