'; $imports = array(); $styles = array(); if ( !empty( $heading ) && $heading != 'none' ) { $imports[] = '@import url(//fonts.googleapis.com/css?family=' . urlencode( $heading ) . ');'; $styles[] = 'h1, h2, h3, h4, h5, h6 { font-family: "' . $heading . '" !important }'; } if ( !empty( $body ) && $body != 'none' ) { $imports[] = '@import url(//fonts.googleapis.com/css?family=' . urlencode( $body ) . ');'; $styles[] = 'body { font-family: "' . $body . '" !important }'; } echo implode( "\r\n", $imports ); echo implode( "\r\n", $styles ); echo ''; } } add_action( 'wp_head', 'mediaphase_load_theme_fonts' );