WP_Font_Face::generate_and_print( array[][] $fonts )

In this article

Generates and prints the @font-face styles for the given fonts.

Parameters

$fontsarray[][]optional
The font-families and their font variations.
See wp_print_font_faces() for the supported fields.
Default empty array.

Source

public function generate_and_print( array $fonts ) {
	$fonts = $this->validate_fonts( $fonts );

	// Bail out if there are no fonts are given to process.
	if ( empty( $fonts ) ) {
		return;
	}

	$css = $this->get_css( $fonts );

	/*
	 * The font-face CSS is contained within <style> tags and can only be interpreted
	 * as CSS in the browser. Using wp_strip_all_tags() is sufficient escaping
	 * to avoid malicious attempts to close </style> and open a <script>.
	 */
	$css = wp_strip_all_tags( $css );

	// Bail out if there is no CSS to print.
	if ( empty( $css ) ) {
		return;
	}

	printf( $this->get_style_element(), $css );
}

Changelog

VersionDescription
6.4.0Introduced.

User Contributed Notes

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