block_core_page_list_build_css_font_sizes()
Build an array with CSS classes and inline styles defining the font sizes which will be applied to the pages markup in the front-end when it is a descendant of navigation.
Хуков нет.
Возвращает
Массив. Font size CSS classes and inline styles.
Использование
block_core_page_list_build_css_font_sizes( $context );
- $context(массив) (обязательный)
- Navigation block context.
Список изменений
| С версии 5.8.0 | Введена. |
Код block_core_page_list_build_css_font_sizes() block core page list build css font sizes WP 6.9.1
function block_core_page_list_build_css_font_sizes( $context ) {
// CSS classes.
$font_sizes = array(
'css_classes' => array(),
'inline_styles' => '',
);
$has_named_font_size = array_key_exists( 'fontSize', $context );
$has_custom_font_size = isset( $context['style']['typography']['fontSize'] );
if ( $has_named_font_size ) {
// Add the font size class.
$font_sizes['css_classes'][] = sprintf( 'has-%s-font-size', $context['fontSize'] );
} elseif ( $has_custom_font_size ) {
// Add the custom font size inline style.
$font_sizes['inline_styles'] = sprintf(
'font-size: %s;',
wp_get_typography_font_size_value(
array(
'size' => $context['style']['typography']['fontSize'],
)
)
);
}
return $font_sizes;
}