Version Description
= 0.8.1 = (1) Revert to a legacy method for attaching widget control settings in order to make it work with old plugins. (2) Fix the word count context logic.
= 0.8 = Major code rewrite and refactoring to improve plugin performance and usability.
= 0.7.2 = Fix PHP warnings/notices.
= 0.7.1 = Confirm that plugin works with the latest version of WordPress.
= 0.7 = Bug fix: check for active sidebars only after $paged has been set.
= 0.6 = Performance improvements - don't check if sidebar has any widgets on every widget load.
Download this release
Release Info
Developer | jamescollins |
Plugin | Widget Context |
Version | 0.8.3 |
Comparing to | |
See all releases |
Code changes from version 0.8.2 to 0.8.3
- readme.txt +5 -1
- widget-context.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=kaspa
|
|
4 |
Tags: widget, widget context, context, logic, widget logic, cms
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.6.1
|
7 |
-
Stable tag: 0.8.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Show or hide widgets on specific posts, pages or sections of your site.
|
@@ -30,6 +30,10 @@ Widget Context allows you to show or hide widgets on certain sections of your si
|
|
30 |
|
31 |
== Changelog ==
|
32 |
|
|
|
|
|
|
|
|
|
33 |
**0.8.2**
|
34 |
|
35 |
* Improved SSL/HTTPS detection.
|
4 |
Tags: widget, widget context, context, logic, widget logic, cms
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.6.1
|
7 |
+
Stable tag: 0.8.3
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Show or hide widgets on specific posts, pages or sections of your site.
|
30 |
|
31 |
== Changelog ==
|
32 |
|
33 |
+
**0.8.3**
|
34 |
+
|
35 |
+
* Fix PHP warning that occurred on PHP 5.2.x.
|
36 |
+
|
37 |
**0.8.2**
|
38 |
|
39 |
* Improved SSL/HTTPS detection.
|
widget-context.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Widget Context
|
4 |
Plugin URI: http://wordpress.org/plugins/widget-context/
|
5 |
Description: Display widgets in context.
|
6 |
-
Version: 0.8.
|
7 |
Author: Kaspars Dambis
|
8 |
Author URI: http://konstruktors.com/
|
9 |
|
@@ -61,7 +61,7 @@ class widget_context {
|
|
61 |
|
62 |
|
63 |
function admin_scripts() {
|
64 |
-
wp_enqueue_style( 'widget-context-admin',
|
65 |
}
|
66 |
|
67 |
|
3 |
Plugin Name: Widget Context
|
4 |
Plugin URI: http://wordpress.org/plugins/widget-context/
|
5 |
Description: Display widgets in context.
|
6 |
+
Version: 0.8.3
|
7 |
Author: Kaspars Dambis
|
8 |
Author URI: http://konstruktors.com/
|
9 |
|
61 |
|
62 |
|
63 |
function admin_scripts() {
|
64 |
+
wp_enqueue_style( 'widget-context-admin', plugins_url( 'admin-style.css', __FILE__ ) );
|
65 |
}
|
66 |
|
67 |
|