How to include Google fonts

时间:2013-10-03 作者:Debashis Sikdar

我正在将html/css模板转换为WordPress主题。索引。html包含以下我想包含在标题中的Google字体。php:http://fonts.googleapis.com/css?family=Bree+Serif\'rel=\'stylesheet\'>请告知我该如何做。

当做

德巴西斯

1 个回复
SO网友:Sven

你可能知道registerenqueue 你内在的风格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\' );

结束

相关推荐