Changeset 784235
- Timestamp:
- 10/07/2013 11:37:33 PM (12 years ago)
- Location:
- bootstrap-shortcodes/trunk
- Files:
-
- 2 edited
-
bootstrap-shortcodes.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bootstrap-shortcodes/trunk/bootstrap-shortcodes.php
r784156 r784235 4 4 Plugin URI: https://github.com/TheWebShop/bootstrap-shortcodes 5 5 Description: A simple shortcode generator. Add buttons, columns, toggles and alerts to your theme. 6 Version: 1.4. 06 Version: 1.4.1 7 7 Author: Kevin Attfield 8 8 Author URI: https://github.com/Sinetheta … … 46 46 47 47 if(!is_admin()){ 48 if( isset($options[' bs_boostrap_css']) && $options['bs_boostrap_css'] ){48 if( isset($options['chk_default_options_css']) && $options['chk_default_options_css'] ){ 49 49 wp_enqueue_style("bs_bootstrap", plugins_url('css/bootstrap.css', __FILE__ ) ); 50 50 wp_enqueue_style("bs_shortcodes", plugins_url('css/shortcodes.css', __FILE__ ) ); 51 51 } 52 if( isset($options[' bs_bootstrap_js']) && $options['bs_bootstrap_js'] )52 if( isset($options['chk_default_options_js']) && $options['chk_default_options_js'] ) 53 53 wp_enqueue_script('bs_bootstrap', plugins_url('js/bootstrap.js', __FILE__ ) ,array('jquery')); 54 54 } else { -
bootstrap-shortcodes/trunk/readme.txt
r784156 r784235 4 4 Requires at least: 3.0 5 5 Tested up to: 3.6 6 Stable tag: 1.4 6 Stable tag: 1.4.1 7 7 License: GNU General Public License v2.0 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.