我第一次在Wordpress中使用子主题。 我想在headers.php中插入一个字体,但我想用子主题来做。 到目前为止,我孩子主题上唯一的文件是style.css。 如何在我的子主题中创建headers.php文件并插入此字体:
my_string = "\u041d\u0438\u043a\u043e\u043b\u0430"
new_string = my_string.decode('unicode-escape')
new_string = new_string.encode('utf-8')
print new_string
Никола
答案 0 :(得分:0)
您可以使用wp_enqueue_style函数
制作文件并将其命名为functions.php
然后使用此代码将其包含在内
您可以将“My_font”替换为您想要的任何内容,只需确保避免空格,并确保在“add_action”函数中替换它。
function My_font() {
wp_enqueue_style('font-awesome','https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css');
}
add_action('wp_enqueue_scripts','My_font');