Yoast_Dashboard_Widget::localize_dashboard_script()publicYoast 1.0

Translates strings used in the dashboard widget.

Метод класса: Yoast_Dashboard_Widget{}

Хуков нет.

Возвращает

Массив. The translated strings.

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

$Yoast_Dashboard_Widget = new Yoast_Dashboard_Widget();
$Yoast_Dashboard_Widget->localize_dashboard_script();

Код Yoast_Dashboard_Widget::localize_dashboard_script() Yoast 22.4

public function localize_dashboard_script() {
	return [
		'feed_header'          => sprintf(
			/* translators: %1$s resolves to Yoast.com */
			__( 'Latest blog posts on %1$s', 'wordpress-seo' ),
			'Yoast.com'
		),
		'feed_footer'          => __( 'Read more like this on our SEO blog', 'wordpress-seo' ),
		'wp_version'           => substr( $GLOBALS['wp_version'], 0, 3 ) . '-' . ( is_plugin_active( 'classic-editor/classic-editor.php' ) ? '1' : '0' ),
		'php_version'          => PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION,
	];
}