你可能知道register 和enqueue 你内在的风格functions.php
.
正如你在法典中看到的,这些函数的参数有一个给定的顺序。只需将webfont的数据放入:
wp_register_style( $handle, $src, $deps, $ver, $media );
wp_enqueue_style( $handle, $src, $deps, $ver, $media );
所以你可能会在你的
functions.php
:
function load_google_webfonts() {
wp_register_style( \'bree\', \'https://fonts.googleapis.com/css?family=Bree+Serif\' );
wp_enqueue_style(\'style\', get_stylesheet_uri(), array(\'bree\'), \'1.0\', \'all\');
}
add_action( \'wp_enqueue_scripts\', \'load_google_webfonts\' );