mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-25 20:33:43 +03:00
21 lines
428 B
PHP
21 lines
428 B
PHP
![]() |
<?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' );
|
||
|
}
|