32 lines
977 B
PHP
32 lines
977 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: Free Palestine Banner
|
|
* Description: Banner for Palestine solidarity
|
|
* Requires at least: 6.1
|
|
* Requires PHP: 7.0
|
|
* Version: 0.1.0
|
|
* Author: Autonomic Co-op
|
|
* License: GPL-2.0-or-later
|
|
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
|
* Text Domain: free-palestine
|
|
* Domain Path: free-palestine
|
|
*
|
|
* @package FreePalestine
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
/**
|
|
* Registers the block using the metadata loaded from the `block.json` file.
|
|
* Behind the scenes, it registers also all assets so they can be enqueued
|
|
* through the block editor in the corresponding context.
|
|
*
|
|
* @see https://developer.wordpress.org/reference/functions/register_block_type/
|
|
*/
|
|
function free_palestine_free_palestine_block_init() {
|
|
register_block_type( __DIR__ . '/build' );
|
|
}
|
|
add_action( 'init', 'free_palestine_free_palestine_block_init' );
|