File "index.php"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/nd-shortcodes/addons/give/customizer/index.php
File size: 620 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
add_action('customize_register','nd_options_customizer_give');
function nd_options_customizer_give( $wp_customize ) {
//ADD panel
$wp_customize->add_panel( 'nd_options_customizer_give', array(
'title' => __( 'ND Give', 'nd-shortcodes' ),
'capability' => 'edit_theme_options',
'theme_supports' => '',
'description' => __( 'Plugin Settings', 'nd-shortcodes' ), // html tags such as <p>.
'priority' => 300, // Mixed with top-level-section hierarchy.
) );
}
// all options
foreach ( glob ( plugin_dir_path( __FILE__ ) . "*/index.php" ) as $file ){
include_once realpath($file);
}