mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-16 08:33:43 +03:00
21 lines
409 B
PHP
21 lines
409 B
PHP
<?php
|
|
/**
|
|
* Block Name: Pledge teams
|
|
* Description: List out the teams supported by this organization's pledge.
|
|
*
|
|
* @package wporg
|
|
*/
|
|
|
|
namespace WordPressdotorg\Theme\FiveForTheFuture_2024\Pledge_Teams;
|
|
|
|
defined( 'WPINC' ) || die();
|
|
|
|
add_action( 'init', __NAMESPACE__ . '\init' );
|
|
|
|
/**
|
|
* Register the block.
|
|
*/
|
|
function init() {
|
|
register_block_type( dirname( __DIR__, 2 ) . '/build/pledge-teams' );
|
|
}
|