Oriental Expression’s Bharatanatyam Group
Sonia Ochoa & Elina Kikili
Guru Bramha – Odissi
More video from the event, you can find at the official playlist here.
/** * Plugin Name: Bootstrap Dropdown Nav Menu Widget * Plugin URI: http://zisoft.co.uk * Description: A dropdown widget nav menu in Bootstrap * Version: 1.0 * Author: Sterge * Author URI: http://zisoft.co.uk * License: GPL2 */ defined('ABSPATH') or die("No script kiddies please!"); require_once plugin_dir_path( __FILE__ ) . '/Bootstrap_Nav_Menu_Drowndown_Widget.php'; function bsddmenu_init() { if (!is_admin()) { wp_register_style('bootstrap-css', '//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css' ); wp_enqueue_style( 'bootstrap-css' ); wp_register_style('bsddmenu-css', plugins_url( 'bsddmenu.css', __FILE__ ) ); wp_enqueue_style( 'bsddmenu-css' ); wp_register_script('jquery-js', '//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js' ); wp_enqueue_script('jquery-js'); wp_register_script('bootstrap-js', '//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js' ); wp_enqueue_script('bootstrap-js'); wp_register_script('bsddmenu-js', plugins_url( 'bsddmenu.js', __FILE__ ) ); wp_enqueue_script('bsddmenu-js'); } register_widget( 'Bootstrap_Nav_Menu_Drowndown_Widget' ); } add_action('init', 'bsddmenu_init'); add_action( 'widgets_init', function(){ register_widget( 'Bootstrap_Nav_Menu_Drowndown_Widget' ); }); ?>
More video from the event, you can find at the official playlist here.