PluginProbe
MyBookTable Bookstore by Stormhill Media / trunk
MyBookTable Bookstore by Stormhill Media vtrunk
3.6.5 trunk
mybooktable / includes / extras / divi.php

divi.php in MyBookTable Bookstore by Stormhill Media trunk, at includes/extras/divi.php

19 lines 695 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3
4 /*---------------------------------------------------------*/
5 /* Divi Theme Integration */
6 /*---------------------------------------------------------*/
7
8 function mbt_divi_init() {
9 if(strtolower(get_option('template')) === 'divi') {
10 add_filter('mbt_is_compatability_mode_on', '__return_false');
11 add_action('add_meta_boxes', 'mbt_add_divi_meta_box');
12 }
13 }
14 add_action('mbt_init', 'mbt_divi_init', 10);
15
16 function mbt_add_divi_meta_box() {
17 add_meta_box('et_settings_meta_box', esc_html__('Divi Post Settings', 'mybooktable'), 'et_single_settings_meta_box', 'mbt_book', 'side', 'high');
18 }
19