ouun / kirki-module-fonts_upload
Easy custom fonts upload and CSS injection with Kirki WordPress plugin.
Installs: 33 450
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.6
This package is auto-updated.
Last update: 2024-11-08 02:33:51 UTC
README
This module allows uploading fonts (.woff, .woff2) via the regular WP Media Upload.
Simply upload the font and it will be available in Typography Fields as Standard Font.
Additionally the @font-face
CSS is added to Kirki CSS Module output.
Requirements
- Kirki Framework >=4.0
- WordPress >= 4.6
Font Formats
By default the upload of .woff
and .woff2
file is supported. You can use a filter to add other font mimes:
add_filter( 'kirki_upload_fonts_allowed_mimes', function( $mimes ) {
return array_merge( $mimes, array(
'ttf' => 'application/font-ttf'
) );
});
Additional Resources
You can add additional fonts (e.g. from your theme folder) by using the filter kirki_upload_fonts_available
:
add_filter( 'kirki_upload_fonts_available', function( $fonts ) {
return array_merge( $fonts, array(
'my_font_name' => array(
'name' => 'My Font Name,
'type' => 'woff',
'url' => 'http://example.com/my_font.woff',
}
) );
});