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



wp_unregister_font_collection › WordPress Function

Seit6.5.0
Veraltetn/v
wp_unregister_font_collection ( $slug )
Parameter:
  • (string) $slug Font collection slug.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if the font collection was unregistered successfully, else false.
Definiert in:
Codex:

Unregisters a font collection from the Font Library.



Quellcode

function wp_unregister_font_collection( string $slug ) {
	return WP_Font_Library::get_instance()->unregister_font_collection( $slug );
}