16 lines
381 B
PHP
16 lines
381 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: Meet The Team Block
|
|
* Description: A custom Gutenberg block to display your team members.
|
|
* Version: 1.0.0
|
|
* Author: Your Name
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
function meet_the_team_block_init() {
|
|
// Automatically loads block.json, editorScript, and style
|
|
register_block_type( __DIR__ );
|
|
}
|
|
add_action( 'init', 'meet_the_team_block_init' );
|