Version Description
- Added in missing call go to global version number variable for enqueued files
Download this release
Release Info
Developer | Rustaurius |
Plugin | Ultimate FAQ |
Version | 1.8.9 |
Comparing to | |
See all releases |
Code changes from version 1.8.8 to 1.8.9
- Main.php +3 -1
- readme.txt +3 -0
Main.php
CHANGED
@@ -7,7 +7,7 @@ Author: Etoile Web Design
|
|
7 |
Author URI: http://www.EtoileWebDesign.com/wordpress-plugins/
|
8 |
Terms and Conditions: http://www.etoilewebdesign.com/plugin-terms-and-conditions/
|
9 |
Text Domain: ultimate-faqs
|
10 |
-
Version: 1.8.
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
@@ -165,6 +165,8 @@ function Add_EWD_UFAQ_FrontEnd_Scripts() {
|
|
165 |
|
166 |
add_action( 'wp_enqueue_scripts', 'EWD_UFAQ_Add_Stylesheet' );
|
167 |
function EWD_UFAQ_Add_Stylesheet() {
|
|
|
|
|
168 |
wp_register_style( 'ewd-ufaq-style', plugins_url('css/ewd-ufaq-styles.css', __FILE__) );
|
169 |
wp_enqueue_style( 'ewd-ufaq-style', $EWD_UFAQ_Version );
|
170 |
|
7 |
Author URI: http://www.EtoileWebDesign.com/wordpress-plugins/
|
8 |
Terms and Conditions: http://www.etoilewebdesign.com/plugin-terms-and-conditions/
|
9 |
Text Domain: ultimate-faqs
|
10 |
+
Version: 1.8.9
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
165 |
|
166 |
add_action( 'wp_enqueue_scripts', 'EWD_UFAQ_Add_Stylesheet' );
|
167 |
function EWD_UFAQ_Add_Stylesheet() {
|
168 |
+
global $EWD_UFAQ_Version;
|
169 |
+
|
170 |
wp_register_style( 'ewd-ufaq-style', plugins_url('css/ewd-ufaq-styles.css', __FILE__) );
|
171 |
wp_enqueue_style( 'ewd-ufaq-style', $EWD_UFAQ_Version );
|
172 |
|
readme.txt
CHANGED
@@ -270,6 +270,9 @@ Video 3 - FAQs Ordering
|
|
270 |
|
271 |
|
272 |
== Changelog ==
|
|
|
|
|
|
|
273 |
= 1.8.8 =
|
274 |
- Added version number to enqueued files
|
275 |
|
270 |
|
271 |
|
272 |
== Changelog ==
|
273 |
+
= 1.8.9 =
|
274 |
+
- Added in missing call go to global version number variable for enqueued files
|
275 |
+
|
276 |
= 1.8.8 =
|
277 |
- Added version number to enqueued files
|
278 |
|