New blocks: Add blocks for the pledge contributors & pledge teams lists

This commit is contained in:
Kelly Dwan 2024-08-28 19:45:27 -04:00
parent cbabdbb33e
commit b22bde9415
No known key found for this signature in database
GPG key ID: 8BA5575F3D11575D
13 changed files with 1030 additions and 9 deletions

View file

@ -0,0 +1,20 @@
<?php
/**
* Block Name: Pledge contributors
* Description: List out the contributors for this organization's pledge.
*
* @package wporg
*/
namespace WordPressdotorg\Theme\FiveForTheFuture_2024\Pledge_Contributors;
defined( 'WPINC' ) || die();
add_action( 'init', __NAMESPACE__ . '\init' );
/**
* Register the block.
*/
function init() {
register_block_type( dirname( __DIR__, 2 ) . '/build/pledge-contributors' );
}