Make WordPress Core


Ignore:
Timestamp:
04/12/2022 03:10:30 PM (3 years ago)
Author:
gziolo
Message:

Editor: Update WordPress packages based based on Gutenberg v13.0 RC3

This is the last step of backports from the Gutenberg plugin for WordPress 6.0 Beta 1 release. It includes all updates WordPress packages published to npm based on the Gutenberg plugin v13.0 RC3 release. This patch also includes all the necessary changes applied to core blocks. New blocks included:

  • Avatar
  • Comment Author Name
  • Comment Content
  • Comment Date
  • Comment Edit Link
  • Comment Rely Link
  • Comment Template
  • Comments Pagination
  • Comments Pagination Next
  • Comments Pagination Previous
  • Comments Query Loop
  • Home Link
  • Post Author Biography
  • Query No Results
  • Read More

See more details in https://github.com/WordPress/wordpress-develop/pull/2564.

Props zieladam, ramonopoly, ocean90.
Fixes #55505.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/includes/functions.php

    r52730 r53157  
    304304function _unhook_block_registration() {
    305305    remove_action( 'init', 'register_block_core_archives' );
     306    remove_action( 'init', 'register_block_core_avatar' );
    306307    remove_action( 'init', 'register_block_core_block' );
    307308    remove_action( 'init', 'register_block_core_calendar' );
    308309    remove_action( 'init', 'register_block_core_categories' );
     310    remove_action( 'init', 'register_block_core_comment_author_name' );
     311    remove_action( 'init', 'register_block_core_comment_content' );
     312    remove_action( 'init', 'register_block_core_comment_date' );
     313    remove_action( 'init', 'register_block_core_comment_edit_link' );
     314    remove_action( 'init', 'register_block_core_comment_reply_link' );
     315    remove_action( 'init', 'register_block_core_comment_template' );
     316    remove_action( 'init', 'register_block_core_comments_pagination' );
     317    remove_action( 'init', 'register_block_core_comments_pagination_next' );
     318    remove_action( 'init', 'register_block_core_comments_pagination_numbers' );
     319    remove_action( 'init', 'register_block_core_comments_pagination_previous' );
    309320    remove_action( 'init', 'register_block_core_file' );
    310321    remove_action( 'init', 'register_block_core_gallery' );
     322    remove_action( 'init', 'register_block_core_home_link' );
    311323    remove_action( 'init', 'register_block_core_image' );
    312324    remove_action( 'init', 'register_block_core_latest_comments' );
     
    320332    remove_action( 'init', 'register_block_core_pattern' );
    321333    remove_action( 'init', 'register_block_core_post_author' );
     334    remove_action( 'init', 'register_block_core_post_author_biography' );
    322335    remove_action( 'init', 'register_block_core_post_comments' );
    323336    remove_action( 'init', 'register_block_core_post_content' );
     
    330343    remove_action( 'init', 'register_block_core_post_title' );
    331344    remove_action( 'init', 'register_block_core_query' );
     345    remove_action( 'init', 'register_block_core_query_no_results' );
    332346    remove_action( 'init', 'register_block_core_query_pagination' );
    333347    remove_action( 'init', 'register_block_core_query_pagination_next' );
     
    335349    remove_action( 'init', 'register_block_core_query_pagination_previous' );
    336350    remove_action( 'init', 'register_block_core_query_title' );
     351    remove_action( 'init', 'register_block_core_read_more' );
    337352    remove_action( 'init', 'register_block_core_rss' );
    338353    remove_action( 'init', 'register_block_core_search' );
Note: See TracChangeset for help on using the changeset viewer.