WordPress 배경 에서 Google Open Sans 글꼴 을 사용 하지 않 고 웹 사 이 트 를 가속 화 합 니 다.

해결 방법 은 간단 합 니 다. Disable Google Fonts 를 사용 하거나 Remove Open Sans font Link from WP core 중 하 나 를 설치 하면 됩 니 다.또는 WP 가 가 져 온 공식 테 마 를 사용 하지 않 았 다 면 현재 사용 하고 있 는 테마의 functions. php 에 아래 코드 를 추가 하면 됩 니 다.
/**
 * WordPress     Google Open Sans  ,    
 * http://www.wpdaxue.com/disable-google-fonts.html
 */
add_filter( 'gettext_with_context', 'wpdx_disable_open_sans', 888, 4 );
function wpdx_disable_open_sans( $translations, $text, $context, $domain ) {
  if ( 'Open Sans font: on or off' == $context && 'on' == $text ) {
    $translations = 'off';
  }
  return $translations;

Open Sans 글꼴 튜 토리 얼:
WordPress 배경 에 있 는 open - sans 글꼴 로드 원본 을 Google Fonts 에서 360 CDN 으로 변경 합 니 다.
http://www.wpdaxue.com/disable-google-fonts.html

좋은 웹페이지 즐겨찾기