WP_Font_Face::build_font_face_css()
Builds the font-family's CSS.
Метод класса: WP_Font_Face{}
Хуков нет.
Возвращает
Строку
. This font-family's CSS.
Использование
// private - только в коде основоного (родительского) класса $result = $this->build_font_face_css( $font_face );
- $font_face(массив) (обязательный)
- Font face to process.
Список изменений
С версии 6.4.0 | Введена. |
Код WP_Font_Face::build_font_face_css() WP Font Face::build font face css WP 6.7.1
private function build_font_face_css( array $font_face ) { $css = ''; /* * Wrap font-family in quotes if it contains spaces * and is not already wrapped in quotes. */ if ( str_contains( $font_face['font-family'], ' ' ) && ! str_contains( $font_face['font-family'], '"' ) && ! str_contains( $font_face['font-family'], "'" ) ) { $font_face['font-family'] = '"' . $font_face['font-family'] . '"'; } foreach ( $font_face as $key => $value ) { // Compile the "src" parameter. if ( 'src' === $key ) { $value = $this->compile_src( $value ); } // If font-variation-settings is an array, convert it to a string. if ( 'font-variation-settings' === $key && is_array( $value ) ) { $value = $this->compile_variations( $value ); } if ( ! empty( $value ) ) { $css .= "$key:$value;"; } } return $css; }