yoast_wpseo_missing_autoload_notice()Yoast 1.0

Returns the notice in case of missing Composer autoload.

Хуков нет.

Возвращает

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

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

yoast_wpseo_missing_autoload_notice();

Код yoast_wpseo_missing_autoload_notice() Yoast 22.4

function yoast_wpseo_missing_autoload_notice() {
	/* translators: %1$s expands to Yoast SEO, %2$s / %3$s: links to the installation manual in the Readme for the Yoast SEO code repository on GitHub */
	$message = esc_html__( 'The %1$s plugin installation is incomplete. Please refer to %2$sinstallation instructions%3$s.', 'wordpress-seo' );
	$message = sprintf( $message, 'Yoast SEO', '<a href="https://github.com/Yoast/wordpress-seo#installation">', '</a>' );
	yoast_wpseo_activation_failed_notice( $message );
}