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