PluginProbe ʕ •ᴥ•ʔ
FrontBlocks for Gutenberg/GeneratePress / 1.0.3
FrontBlocks for Gutenberg/GeneratePress v1.0.3
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
.cursor 9 months ago assets 9 months ago includes 9 months ago vendor 9 months ago frontblocks.php 9 months ago readme.txt 9 months ago
frontblocks.php
41 lines
1 <?php
2 /**
3 * Plugin Name: FrontBlocks for GeneratePress
4 * Plugin URI: https://wordpress.org/plugins/frontblocks/
5 * Description: Blocks and helpers that extends GeneratePress blocks.
6 * Version: 1.0.3
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: 5.0
15 * Requires PHP: 7.0
16 *
17 * @package FrontBlocks
18 * @author Closemarketing
19 * @copyright 2025 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.3' );
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 // Load Composer autoloader.
35 if ( file_exists( FRBL_PLUGIN_PATH . 'vendor/autoload.php' ) ) {
36 require_once FRBL_PLUGIN_PATH . 'vendor/autoload.php';
37 }
38
39 // Initialize the plugin.
40 FrontBlocks\Plugin_Main::get_instance();
41