Noto Sans Japanese のフォントウェイトを指定した場合に、スタイルシートのURLに誤りが発生する事がわかりました。
Quick Fix functions.php line:8732
if( true == $flag_early_access ) { $font_url = 'http://fonts.googleapis.com/earlyaccess/'; $font_url .= str_replace( ' ','', strtolower( $font_name.'.css' ) ); $include_fonts = str_replace( sprintf( $link_html, $font_url ,'google-font-early-'. sanitize_html_class( $id ). '-css' ),'', $include_fonts );
Please change below.
if( true == $flag_early_access ) { $font_url = 'http://fonts.googleapis.com/earlyaccess/'; $font_url .= str_replace( ' ','', strtolower( $font_name.'.css' ) ); // add script start $font_url = str_replace( $separator . $weight_and_italic_values, '', $font_url ); $id = str_replace( $weight_and_italic_values, '', $id ); // add script end $include_fonts = str_replace( sprintf( $link_html, $font_url ,'google-font-early-'. sanitize_html_class( $id ). '-css' ),'', $include_fonts );
This bug will fix next version.
上記のように変更いただけますようお願いします。