wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_print_font_faces_from_style_variations › WordPress Function

Seit6.7.0
Veraltetn/v
wp_print_font_faces_from_style_variations ( Keine Parameter )
Definiert in:
Codex:

Generates and prints font-face styles defined the the theme style variations.



Quellcode

function wp_print_font_faces_from_style_variations() {
	$fonts = WP_Font_Face_Resolver::get_fonts_from_style_variations();

	if ( empty( $fonts ) ) {
		return;
	}

	wp_print_font_faces( $fonts );
}