php 将Google字体添加到Wordpress(正确的方式)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将Google字体添加到Wordpress(正确的方式)相关的知识,希望对你有一定的参考价值。

<?php

add_action( 'wp_enqueue_scripts', 'child_load_google_fonts' );
/**
 * Enqueue Google Fonts using a function
 */
function child_load_google_fonts() {
  	
  	// Setup font arguments
	$query_args = array(
		'family' => 'Open+Sans:300,400,700' // Change this font to whatever font you'd like
	);
 
 	// A safe way to register a CSS style file for later use
	wp_register_style( 'google-fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null );
	
	// A safe way to add/enqueue a CSS style file to a WordPress generated page
	wp_enqueue_style( 'google-fonts' );
}

以上是关于php 将Google字体添加到Wordpress(正确的方式)的主要内容,如果未能解决你的问题,请参考以下文章

text 将Google Analytics添加到WordPress主题functions.php

php 将Google Analytics跟踪代码添加到WordPress的简单插件

php 将Google Analytics跟踪代码添加到WordPress的简单插件

php 通过functions.php将Google字体添加到WP

php Wordpress functions.php片段使用Yoast的插件将Google Analytics跟踪添加到wp_nav_menu

为啥我不能在 WordPress functions.php 中将多个 Google 字体排入队列?