Make WordPress Core


Ignore:
Timestamp:
06/27/2023 02:20:18 PM (3 years ago)
Author:
Bernhard Reiter
Message:

Editor: update Wordpress npm packages.

Updates the wordpress npm packages and their dependencies to the latest versions, as well as auto-updates to relevant core PHP files.

Props youknowriad, joemcgill, spacedmonkey, ramonopoly, peterwilsoncc, bernhard-reiter, tyxla, dmsnell.
Fixes #58623.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/home-link.php

    r55246 r56065  
    9999        $font_sizes['css_classes']
    100100    );
     101    $classes[]       = 'wp-block-navigation-item';
    101102    $style_attribute = ( $colors['inline_styles'] . $font_sizes['inline_styles'] );
    102     $css_classes     = trim( implode( ' ', $classes ) ) . ' wp-block-navigation-item';
    103103
    104104    $wrapper_attributes = get_block_wrapper_attributes(
    105105        array(
    106             'class' => $css_classes,
     106            'class' => implode( ' ', $classes ),
    107107            'style' => $style_attribute,
    108108        )
Note: See TracChangeset for help on using the changeset viewer.