five-for-the-future/themes/wporg-5ftf-2024/src/pledge-contributors/index.php

21 lines
428 B
PHP
Raw Normal View History

<?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' );
}