PluginProbe ʕ •ᴥ•ʔ
FrontBlocks for Gutenberg/GeneratePress / 1.0.0
FrontBlocks for Gutenberg/GeneratePress v1.0.0
trunk 0.2.0 0.2.1 0.2.2 0.2.3 0.2.4 0.2.5 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 ci-artifacts
frontblocks / frontblocks.php
frontblocks Last commit date
includes 11 months ago frontblocks.php 11 months ago readme.txt 10 months ago
frontblocks.php
48 lines
1 <?php
2 /**
3 * Plugin Name: FrontBlocks for GeneratePress
4 * Plugin URI: https://github.com/closemarketing/frontblocks
5 * Description: Blocks and helpers that extends GeneratePress blocks.
6 * Version: 1.0.0
7 * Author: Closemarketing
8 * Author URI: https://close.marketing
9 * Text Domain: frontblocks
10 * Domain Path: /languages
11 * License: GPL-2.0+
12 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
13 *
14 * Requires at least: 6.7
15 * Requires PHP: 7.0
16 *
17 * @package FrontBlocks
18 * @author Closemarketing
19 * @copyright 2023 Closemarketing
20 * @license GPL-2.0+
21 *
22 * @wordpress-plugin
23 *
24 * Prefix: frbl_
25 */
26
27 defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
28
29 define( 'FRBL_VERSION', '1.0.0' );
30 define( 'FRBL_PLUGIN', __FILE__ );
31 define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
32 define( 'FRBL_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
33
34 // Carousel.
35 require_once FRBL_PLUGIN_PATH . 'includes/carousel/frontblocks-carousel.php';
36
37 // Animations.
38 require_once FRBL_PLUGIN_PATH . 'includes/animations/frontblocks-animations.php';
39
40 // Sticky Column.
41 require_once FRBL_PLUGIN_PATH . 'includes/sticky-column/frontblocks-sticky-column.php';
42
43 // Gallery.
44 require_once FRBL_PLUGIN_PATH . 'includes/gallery/frontblocks-gallery.php';
45
46 // Insert Post Block.
47 require_once FRBL_PLUGIN_PATH . 'includes/post/frontblocks-insert-post.php';
48