block_core_home_link_build_li_wrapper_attributes()
Builds an array with classes and style for the li wrapper
Хуков нет.
Возвращает
Строку. The li wrapper attributes.
Использование
block_core_home_link_build_li_wrapper_attributes( $context );
- $context(массив) (обязательный)
- Home link block context.
Список изменений
| С версии 6.0.0 | Введена. |
Код block_core_home_link_build_li_wrapper_attributes() block core home link build li wrapper attributes WP 6.9.4
function block_core_home_link_build_li_wrapper_attributes( $context ) {
$colors = block_core_home_link_build_css_colors( $context );
$font_sizes = block_core_home_link_build_css_font_sizes( $context );
$classes = array_merge(
$colors['css_classes'],
$font_sizes['css_classes']
);
$style_attribute = ( $colors['inline_styles'] . $font_sizes['inline_styles'] );
$classes[] = 'wp-block-navigation-item';
if ( is_front_page() ) {
$classes[] = 'current-menu-item';
} elseif ( is_home() && ( (int) get_option( 'page_for_posts' ) !== get_queried_object_id() ) ) {
// Edge case where the Reading settings has a posts page set but not a static homepage.
$classes[] = 'current-menu-item';
}
$wrapper_attributes = get_block_wrapper_attributes(
array(
'class' => implode( ' ', $classes ),
'style' => $style_attribute,
)
);
return $wrapper_attributes;
}