//neve主题添加自定义字体
function add_custom_font() {
$font_path_ttf = get_stylesheet_directory_uri() . '/fonts/BionicKidSimpleSlanted.ttf';
?>
<style type="text/css">
@font-face {
font-family: 'BionicKidSimpleSlanted';
src: url( <?php echo esc_url( $font_path_ttf ); ?>) format('truetype');
}
</style>
<?php
}
add_action( 'wp_head', 'add_custom_font' );
add_action( 'customize_controls_print_styles', 'add_custom_font' );
function add_custom_fonts( $localized_data ) {
$localized_data['fonts']['Custom'][] = 'BionicKidSimpleSlanted';
return $localized_data;
}
add_filter( 'neve_react_controls_localization', 'add_custom_fonts' );
版权归属:
wood
许可协议:
本文使用《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》协议授权
评论区