Changeset 1186225
- Timestamp:
- 06/23/2015 02:32:58 PM (11 years ago)
- Location:
- themedy-widgets/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
themedy-widgets.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
themedy-widgets/trunk/readme.txt
r1121365 r1186225 2 2 Contributors: themedy, mahodder, matthodder 3 3 Tags: shortcodes, themedy, genesis, thesis, ad widget, flickr widget, vimeo widget, video widget 4 Requires at least: 4. 05 Tested up to: 4. 1.16 Stable tag: 1.0 4 Requires at least: 4.1 5 Tested up to: 4.2.2 6 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 26 26 == Changelog == 27 27 28 = 1.0.1 = 29 * Add more checks to decide which widgets to activate 30 28 31 = 1.0 = 29 32 * First release. -
themedy-widgets/trunk/themedy-widgets.php
r1121365 r1186225 4 4 Plugin URI: http://themedy.com 5 5 Description: A selection of widgets to extend your Themedy site even further. 6 Version: 1.0 6 Version: 1.0.1 7 7 Author: Themedy 8 8 Author URI: http://themedy.com … … 19 19 function themedy_widget_setup() { 20 20 if ( !class_exists( 'themedy_video_widget' )) { 21 include('includes/widgets/widget-ad120x60.php');22 include('includes/widgets/widget-ad120x240.php');23 include('includes/widgets/widget-ad125.php');24 include('includes/widgets/widget-ad300x250.php');25 include('includes/widgets/widget-ad300x600.php');26 include('includes/widgets/widget-flickr.php');27 21 include('includes/widgets/widget-video.php'); 28 22 } 23 24 if ( !class_exists( 'themedy_ad120x60_widget' )) { 25 include('includes/widgets/widget-ad120x60.php'); 26 } 27 28 if ( !class_exists( 'themedy_ad120x240_widget' )) { 29 include('includes/widgets/widget-ad120x240.php'); 30 } 31 32 if ( !class_exists( 'themedy_ad_widget' )) { 33 include('includes/widgets/widget-ad125.php'); 34 } 35 36 if ( !class_exists( 'themedy_ad300_widget' )) { 37 include('includes/widgets/widget-ad300x250.php'); 38 } 39 40 if ( !class_exists( 'themedy_ad300x600_widget' )) { 41 include('includes/widgets/widget-ad300x600.php'); 42 43 } 44 if ( !class_exists( 'themedy_flickr_widget' )) { 45 include('includes/widgets/widget-flickr.php'); 46 } 29 47 }
Note: See TracChangeset
for help on using the changeset viewer.