five-for-the-future/themes/wporg-5ftf-2024/src/pledge-teams/index.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' );
}