Skip to content

Instantly share code, notes, and snippets.

@dsawardekar
Created November 25, 2022 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsawardekar/676d0d4c5d7f688351e199fdc54484d6 to your computer and use it in GitHub Desktop.
Save dsawardekar/676d0d4c5d7f688351e199fdc54484d6 to your computer and use it in GitHub Desktop.
Change Title of Block in Block Catalog Plugin
<?php
add_filter( 'block_catalog_block_title', function( $title, $block_name, $block ) {
$map = [
"xyz/custom-block" => "My Custom Block",
];
if ( ! empty( $map[ $block_name ] ) ) {
return $map[ $block_name ];
}
return $title;
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment