Changeset 2725659
- Timestamp:
- 05/17/2022 09:23:39 PM (4 years ago)
- Location:
- serenity-theme-extensions/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (1 diff)
-
serenity-extensions.php (modified) (1 diff)
-
widgets/feature_widget.php (modified) (1 diff)
-
widgets/showcase_widget.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
serenity-theme-extensions/trunk/readme.txt
r2475019 r2725659 2 2 3 3 Contributors: themely 4 Tags: 5 Requires at least: 3.86 Tested up to: 5. 6.17 Stable tag: 1.1. 14 Tags: serenity, theme, extensions 5 Requires at least: 4.9 6 Tested up to: 5.9.3 7 Stable tag: 1.1.2 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later -
serenity-theme-extensions/trunk/serenity-extensions.php
r2475019 r2725659 4 4 Plugin URI: https://www.themely.com/themes/serenity/ 5 5 Description: This plugin adds custom widgets required by the Serenity WordPress theme developed by Themely. 6 Version: 1.1. 16 Version: 1.1.2 7 7 Author: Themely 8 8 Author URI: https://www.themely.com -
serenity-theme-extensions/trunk/widgets/feature_widget.php
r2417334 r2725659 15 15 16 16 // This is where we add the style and script 17 add_action( 'load-widgets.php', array( &$this, 'serenity_lite_widgets_color_picker') );17 add_action( 'load-widgets.php', array($this, 'serenity_lite_widgets_color_picker') ); 18 18 19 19 $widget_ops = array( -
serenity-theme-extensions/trunk/widgets/showcase_widget.php
r2061718 r2725659 15 15 16 16 // This is where we add the style and script 17 add_action( 'load-widgets.php', array( &$this, 'serenity_lite_widgets_color_picker') );17 add_action( 'load-widgets.php', array($this, 'serenity_lite_widgets_color_picker') ); 18 18 19 19 $widget_ops = array( … … 31 31 'textarea' => '', 32 32 ); 33 } 34 35 /** 36 * Enqueue the color picker styles and script. 37 **/ 38 function serenity_lite_widgets_color_picker() { 39 wp_enqueue_style( 'wp-color-picker' ); 40 wp_enqueue_script( 'wp-color-picker' ); 33 41 } 34 42
Note: See TracChangeset
for help on using the changeset viewer.