Make WordPress Core


Ignore:
Timestamp:
06/27/2023 06:25:20 PM (21 months ago)
Author:
Bernhard Reiter
Message:

Editor: Update npm WordPress npm packages.

This fixes a fatal error in the Navigation block, which was due to a reference
to WP_Navigation_Fallback_Gutenberg that isn’t present in Core under that name.

Follow-up to [56065].
Props ramonjd, isabel_brison, dmsnell.
Fixes #58623.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/latest-posts.php

    r56065 r56076  
    5252        $use_excerpt = 'excerpt' === $attributes['displayPostContentRadio'];
    5353        /* translators: %1$s is a URL to a post, excerpt truncation character, default … */
    54         return $use_excerpt ? sprintf( __( ' … <a href="%1$s" rel="noopener noreferrer">Read more</a>', 'gutenberg' ), esc_url( get_permalink() ) ) : $more;
     54        return $use_excerpt ? sprintf( __( ' … <a href="%1$s" rel="noopener noreferrer">Read more</a>' ), esc_url( get_permalink() ) ) : $more;
    5555    };
    5656
Note: See TracChangeset for help on using the changeset viewer.