Changes between Version 1 and Version 2 of Ticket #59348, comment 2
- Timestamp:
- 09/14/2023 03:19:35 PM (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #59348, comment 2
v1 v2 3 3 4 4 {{{ 5 function f ilter_metadata_registration( $metadata ) {5 function fzs_filter_metadata_registration( $metadata ) { 6 6 if ($metadata['name'] === 'core/post-excerpt') { 7 7 $metadata['attributes']['excerptLength'] = [ … … 12 12 return $metadata; 13 13 }; 14 add_filter( 'block_type_metadata', 'f ilter_metadata_registration' );14 add_filter( 'block_type_metadata', 'fzs_filter_metadata_registration' ); 15 15 }}}