* @license GPL-2.0 * @link http://github.com/andrezrv/agnosia-bootstrap-carousel * @copyright 2013-2014 Andrés Villarreal * * @wordpress-plugin * Plugin Name: Agnosia Bootstrap Carousel by AuSoft * Plugin URI: http://wordpress.org/extend/plugins/agnosia-bootstrap-carousel/ * Description: Hooks the [gallery] shortcode with attribute type="carousel" in order to show a Bootstrap Carousel based on the selected images and their titles and descriptions. Very important: this plugin assumes either your theme includes the necessary Bootstrap Javascript and CSS files to display the carousel properly, or that you have included the files on your own. It will not include the files for you, so if they are not present, the carousel will not work. * Author: Andrés Villarreal, AuSoft * Author URI: http://aufieroinformatica.com/wordpress/ * Version: 1.0 */ // Load Agnosia Bootstrap Carousel class. require( dirname( __FILE__ ) . '/agnosia-bootstrap-carousel.class.php' ); // Load Agnosia Bootstrap Carousel Loader class. require( dirname( __FILE__ ) . '/agnosia-bootstrap-carousel-loader.class.php' ); // Load Agnosia Bootstrap Carousel. new Agnosia_Bootstrap_Carousel_Loader;