add_section('adventure_tours_wonderplace',array(
'title' => __('Wonderfull Places Section','adventure-tours'),
'description'=> __('This section will appear below the service section.','adventure-tours'),
'panel' => 'vw_tour_lite_panel_id',
));
for ( $count = 0; $count <= 0; $count++ ) {
$wp_customize->add_setting( 'adventure_tours_wondersettings-page-' . $count, array(
'default' => '',
'sanitize_callback' => 'absint'
));
$wp_customize->add_control( 'adventure_tours_wondersettings-page-' . $count, array(
'label' => __( 'Select wonderfull place Page', 'adventure-tours' ),
'section' => 'adventure_tours_wonderplace',
'type' => 'dropdown-pages'
));
}
}
add_action( 'customize_register', 'adventure_tours_customizer' );
define('ADVENTURE_TOURS_CREDIT','https://wordpress.org','adventure-tours');
if ( ! function_exists( 'adventure_tours_credit' ) ) {
function adventure_tours_credit(){
echo "wordpress.org";
}
}
/*function vw_tours_lite_child_after_slider() {
echo "
";
}
add_action('vw_tours_lite_child_after_slider','vw_tours_lite_child_after_slider');*/
?>