ouun/kirki-module-fonts_upload

Easy custom fonts upload and CSS injection with Kirki WordPress plugin.

v1.0.1 2020-04-07 16:08 UTC

This package is auto-updated.

Last update: 2024-04-08 01:06:56 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',
        }
    ) );
});