Changeset 1204969
- Timestamp:
- 07/23/2015 03:28:32 PM (11 years ago)
- Location:
- themedy-widgets/trunk
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
readme.txt (modified) (3 diffs)
-
themedy-widgets.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
themedy-widgets/trunk
- Property svn:ignore
-
old new 1 1 .git 2 *.gitignore
-
- Property svn:ignore
-
themedy-widgets/trunk/readme.txt
r1186225 r1204969 3 3 Tags: shortcodes, themedy, genesis, thesis, ad widget, flickr widget, vimeo widget, video widget 4 4 Requires at least: 4.1 5 Tested up to: 4.2. 26 Stable tag: 1.0. 15 Tested up to: 4.2.3 6 Stable tag: 1.0.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 == Description == 13 13 14 Themedy Widgets include five ad widgets, a Flickr widget and a video widget for use in your Themedy sites.14 Themedy Widgets include five ad widgets, a Flickr widget, tabbed widget and a video widget for use in your Themedy sites. 15 15 16 16 There is no options page, just activate and checkout your new widgts in your WordPress widgets section! … … 26 26 == Changelog == 27 27 28 = 1.0.2 = 29 * Add tabbed widget 30 28 31 = 1.0.1 = 29 32 * Add more checks to decide which widgets to activate -
themedy-widgets/trunk/themedy-widgets.php
r1186225 r1204969 21 21 include('includes/widgets/widget-video.php'); 22 22 } 23 24 23 if ( !class_exists( 'themedy_ad120x60_widget' )) { 25 24 include('includes/widgets/widget-ad120x60.php'); 26 25 } 27 28 26 if ( !class_exists( 'themedy_ad120x240_widget' )) { 29 27 include('includes/widgets/widget-ad120x240.php'); 30 28 } 31 32 29 if ( !class_exists( 'themedy_ad_widget' )) { 33 30 include('includes/widgets/widget-ad125.php'); 34 31 } 35 36 32 if ( !class_exists( 'themedy_ad300_widget' )) { 37 33 include('includes/widgets/widget-ad300x250.php'); 38 34 } 39 40 35 if ( !class_exists( 'themedy_ad300x600_widget' )) { 41 36 include('includes/widgets/widget-ad300x600.php'); … … 45 40 include('includes/widgets/widget-flickr.php'); 46 41 } 42 if ( !class_exists( 'themedy_tab_widgets' )) { 43 include('includes/widgets/widget-tabbed.php'); 44 } 47 45 }
Note: See TracChangeset
for help on using the changeset viewer.