Changeset 2762489
- Timestamp:
- 07/27/2022 03:43:19 PM (4 years ago)
- Location:
- serenity-theme-extensions/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
widgets/showcase_widget.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
serenity-theme-extensions/trunk/readme.txt
r2725659 r2762489 2 2 3 3 Contributors: themely 4 Tags: serenity, theme, extensions5 Requires at least: 4.96 Tested up to: 5.9.34 Tags: 5 Requires at least: 3.8 6 Tested up to: 6.0 7 7 Stable tag: 1.1.2 8 8 Requires PHP: 5.6 … … 47 47 48 48 == Changelog == 49 50 51 ### 1.1.2 - July 27th, 2022 52 53 Changes: 54 55 - Fixed missing single quotes in showcase widget file 49 56 50 57 -
serenity-theme-extensions/trunk/widgets/showcase_widget.php
r2725659 r2762489 19 19 $widget_ops = array( 20 20 'classname' => 'serenity-showcase-widget', 21 'description' => __('Add a showcase detail to the Showcase section of the One-page Template.', 'serenity-lite') 21 'description' => __('Add a showcase detail to the Showcase section of the One-page Template.', 'serenity-lite'), 22 'customize_selective_refresh' => true, 22 23 ); 23 24 parent::__construct( 'serenity_showcase', __('Showcase Widget', 'serenity-lite'), $widget_ops ); … … 115 116 <label for="<?php echo $this->get_field_id('style'); ?>"><?php esc_html_e('Showcase Icon Style', 'serenity-lite'); ?></label> 116 117 <select class='widefat' id="<?php echo $this->get_field_id('style'); ?>" name="<?php echo $this->get_field_name('style'); ?>"> 117 <option value="fas" <?php selected( $instance['style'], fas); ?>>Solid</option>118 <option value="far" <?php selected( $instance['style'], far); ?>>Regular</option>119 <option value="fab" <?php selected( $instance['style'], fab); ?>>Brands</option>118 <option value="fas" <?php selected( $instance['style'], 'fas' ); ?>>Solid</option> 119 <option value="far" <?php selected( $instance['style'], 'far' ); ?>>Regular</option> 120 <option value="fab" <?php selected( $instance['style'], 'fab' ); ?>>Brands</option> 120 121 </select> 121 122 <i><?php esc_html_e('Select which style to use for this icon. Each icon page displays the icon name and style directly beneath it.', 'serenity-lite'); ?> <a href="<?php echo esc_url('https://fontawesome.com/icons/apple?style=brands'); ?>" target="_blank"><?php esc_html_e('Here is an example', 'serenity-lite'); ?></a>.</i>
Note: See TracChangeset
for help on using the changeset viewer.