我有一个儿童主题,我正在尝试过滤以下内容:
// add the function to the init hook
add_action( 'init', 'options_typography_get_google_fonts' );
// add a font to the $google_fonts variable
function options_typography_get_google_fonts() {
// Google Font Defaults
global $google_faces;
$google_faces = array(
'Great Vibes, cursive' => '*Great Vibes'
);
return $google_faces;
}
过滤这个以便我可以添加更多谷歌字体的最佳方法是什么?