PluginProbe
Bricksable for Bricks Builder / 1.5.6
Bricksable for Bricks Builder v1.5.6
1.2.9 1.3.0 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.31 1.4.32 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 All 132 releases
bricksable / bricksable.php

bricksable.php in Bricksable for Bricks Builder 1.5.6, at bricksable.php

51 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Bricksable
4 * Version: 1.5.6
5 * Plugin URI: https://bricksable.com/
6 * Description: A collection of premium quality elements for Bricks Builder.
7 * Author: Bricksable
8 * Author URI: https://bricksable.com/about/
9 * Requires at least: 5.6
10 * Tested up to: 6.1.1
11 *
12 * Text Domain: bricksable
13 * Domain Path: /lang/
14 *
15 * @package WordPress
16 * @author Bricksable
17 * @since 1.0.0
18 */
19
20 if ( ! defined( 'ABSPATH' ) ) {
21 exit;
22 }
23
24 // Load plugin class files.
25 require_once 'includes/class-bricksable.php';
26 require_once 'includes/class-bricksable-settings.php';
27 require_once 'includes/class-bricksable-helper.php';
28
29 // Load plugin libraries.
30 require_once 'includes/lib/class-bricksable-admin-api.php';
31 require_once 'includes/lib/class-bricksable-post-type.php';
32 require_once 'includes/lib/class-bricksable-taxonomy.php';
33
34 /**
35 * Returns the main instance of Bricksable to prevent the need to use globals.
36 *
37 * @since 1.0.0
38 * @return object Bricksable
39 */
40 function bricksable() {
41 $instance = Bricksable::instance( __FILE__, '1.5.6' );
42
43 if ( is_null( $instance->settings ) ) {
44 $instance->settings = Bricksable_Settings::instance( $instance );
45 }
46
47 return $instance;
48 }
49
50 bricksable();
51