WP_Font_Face::build_font_face_css( array $font_face ): string

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Builds the font-family’s CSS.

Parameters

$font_facearrayrequired
Font face to process.

Return

string This font-family’s CSS.

Source

private function build_font_face_css( array $font_face ) {
	$css = '';

	/*
	 * Wrap font-family in quotes if it contains spaces
	 * and is not already wrapped in quotes.
	 */
	if (
		str_contains( $font_face['font-family'], ' ' ) &&
		! str_contains( $font_face['font-family'], '"' ) &&
		! str_contains( $font_face['font-family'], "'" )
	) {
		$font_face['font-family'] = '"' . $font_face['font-family'] . '"';
	}

	foreach ( $font_face as $key => $value ) {
		// Compile the "src" parameter.
		if ( 'src' === $key ) {
			$value = $this->compile_src( $value );
		}

		// If font-variation-settings is an array, convert it to a string.
		if ( 'font-variation-settings' === $key && is_array( $value ) ) {
			$value = $this->compile_variations( $value );
		}

		if ( ! empty( $value ) ) {
			$css .= "$key:$value;";
		}
	}

	return $css;
}

Changelog

VersionDescription
6.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.