Make WordPress Core


Ignore:
Timestamp:
05/19/2021 03:07:55 PM (2 years ago)
Author:
gziolo
Message:

Editor: Update WordPress packages published for Gutenberg 10.6

It contains several changes in addition to regular update to WordPress packages:

  • All newly exposed blocks are now registered on the server.
  • Dutone block support was added.
  • Border block support was updated.
  • New shared function construct_wp_query_args was added for the family of Query blocks - it might need some further work.

Props youknowriad.
See #52991.

File:
1 edited

Legend:

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

    r50824 r50929  
    308308    remove_action( 'init', 'register_block_core_categories' );
    309309    remove_action( 'init', 'register_block_core_file' );
     310    remove_action( 'init', 'register_block_core_loginout' );
    310311    remove_action( 'init', 'register_block_core_latest_comments' );
    311312    remove_action( 'init', 'register_block_core_latest_posts' );
     313    remove_action( 'init', 'register_block_core_post_author' );
     314    remove_action( 'init', 'register_block_core_post_content' );
     315    remove_action( 'init', 'register_block_core_post_date' );
     316    remove_action( 'init', 'register_block_core_post_excerpt' );
     317    remove_action( 'init', 'register_block_core_post_featured_image' );
     318    remove_action( 'init', 'register_block_core_post_terms' );
     319    remove_action( 'init', 'register_block_core_post_title' );
     320    remove_action( 'init', 'register_block_core_query' );
     321    remove_action( 'init', 'register_block_core_query_loop' );
     322    remove_action( 'init', 'register_block_core_query_pagination' );
     323    remove_action( 'init', 'register_block_core_query_pagination_next' );
     324    remove_action( 'init', 'register_block_core_query_pagination_numbers' );
     325    remove_action( 'init', 'register_block_core_query_pagination_previous' );
     326    remove_action( 'init', 'register_block_core_query_title' );
    312327    remove_action( 'init', 'register_block_core_rss' );
    313328    remove_action( 'init', 'register_block_core_search' );
    314329    remove_action( 'init', 'register_block_core_shortcode' );
     330    remove_action( 'init', 'register_block_core_site_tagline' );
     331    remove_action( 'init', 'register_block_core_site_title' );
    315332    remove_action( 'init', 'register_block_core_social_link' );
    316333    remove_action( 'init', 'register_block_core_social_link' );
Note: See TracChangeset for help on using the changeset viewer.