-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbb-header-footer.php
More file actions
32 lines (28 loc) · 915 Bytes
/
bb-header-footer.php
File metadata and controls
32 lines (28 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* Plugin Name: Header Footer for Beaver Builder
* Plugin URI: https://github.com/Nikschavan/bb-header-footer/
* Description: An easy-to-use Beaver Builder addon to import pages or templates as a header or a footer across a Beaver Builder website.
* Author: Nikhil Chavan
* Author URI: https://www.nikhilchavan.com/
* Text Domain: bb-header-footer
* Domain Path: /languages
* Version: 1.2.5
*
* @package BB_Header_Footer
*/
/**
* Load the class loader.
*/
require_once 'class-bb-header-footer.php';
define( 'BBHF_VER', '1.2.5' );
define( 'BBHF_DIR', plugin_dir_path( __FILE__ ) );
define( 'BBHF_URL', plugins_url( '/', __FILE__ ) );
define( 'BBHF_PATH', plugin_basename( __FILE__ ) );
/**
* Load the Plugin Class.
*/
function bb_header_footer_init() {
new BB_Header_Footer();
}
add_action( 'plugins_loaded', 'bb_header_footer_init' );