components
1 year ago
donation-form
6 months ago
donation-form-grid
6 months ago
donor-wall
6 months ago
load.js
5 years ago
load.php
4 years ago
load.php
38 lines
| 1 | <?php |
| 2 | // Exit if access directly. |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * Add Custom Block Category for Give blocks |
| 9 | */ |
| 10 | function give_blocks_category( $categories, $post ) { |
| 11 | return array_merge( |
| 12 | $categories, |
| 13 | array( |
| 14 | array( |
| 15 | 'slug' => 'give', |
| 16 | 'title' => __( 'Give', 'give' ), |
| 17 | ), |
| 18 | ) |
| 19 | ); |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * @since 2.19.0 The `block_categories` filter is deprecated as of WordPress 5.8 |
| 24 | */ |
| 25 | if ( version_compare( get_bloginfo( 'version' ), '5.8', '>=' ) ) { |
| 26 | add_filter( 'block_categories_all', 'give_blocks_category', 10, 2 ); |
| 27 | } else { |
| 28 | add_filter( 'block_categories', 'give_blocks_category', 10, 2 ); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Blocks |
| 33 | */ |
| 34 | require_once GIVE_PLUGIN_DIR . 'blocks/donation-form/class-give-donation-form-block.php'; |
| 35 | require_once GIVE_PLUGIN_DIR . 'blocks/donation-form-grid/class-give-donation-form-grid-block.php'; |
| 36 | require_once GIVE_PLUGIN_DIR . 'blocks/donor-wall/class-give-donor-wall.php'; |
| 37 | |
| 38 |