直接使用
把你的字体文件上传到目录,如 …/inc/uploads/fonts/
然后再添加@font-face在主题选项> 常规 > 自定义CSS 或者在子主题的样式文件中
@font-face { font-family: ‘Gruppo’; src: url(‘/inc/uploads/fonts/Gruppo_reg.eot’); src: url(‘/inc/uploads/fonts/fonts/Gruppo_reg.eot’) format(‘embedded-opentype’), url(‘/inc/uploads/fonts/fonts/Gruppo_reg.woff’) format(‘woff’), url(‘/inc/uploads/fonts/fonts/Gruppo_reg.ttf’) format(‘truetype’), url(‘/inc/uploads/fonts/fonts/gruppo_reg.svg#Gruppo’) format(‘svg’); }
现在,您可以使用自定义CSS来使用字体
body, p, h1 h2 { font-family: ‘Gruppo’ !important; }
要添加字体列表
对于The7.3
找到到 function presscore_options_get_safe_fonts() 在 ../dt-the7/inc/helpers/options.php line ~ 381
添加你要的字体。
对于 The7.2, Aramda
转到 function dt_stylesheet_get_websafe_fonts() 在 ../THEME-NAME/inc/extensions/stylesheet-functions.php line ~ 244
添加字体
$fonts = array( ‘Gruppo’=> ‘Gruppo’,
现在,您将可用 主题选项 > 内容字体 > 字体列表 !你可以在你的子主题的fucntions.php使用这些功能 !
随便给The7添加雅黑字体等都行。