Changeset 1663777
- Timestamp:
- 05/24/2017 09:07:49 AM (9 years ago)
- Location:
- pg-context-sidebar/trunk
- Files:
-
- 2 edited
-
pg-context-sidebar.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pg-context-sidebar/trunk/pg-context-sidebar.php
r854326 r1663777 5 5 Tags: post sidebar, page sidebar 6 6 Description: This plugin allows you to display context sensitive information in the sidebar for each page or post that you want 7 Version: 2. 0.17 Version: 2.1 8 8 Author: PeoplesGeek 9 9 Author URI: http://www.peoplesgeek.com … … 11 11 Domain Path: /languages 12 12 13 Copyright 2012 Brian Reddick (info@peoplesgeek.com)13 Copyright 2012 Brian Reddick 14 14 15 15 This program is free software; you can redistribute it and/or modify … … 446 446 class pgeek_cs_widget extends WP_Widget{ 447 447 448 function pgeek_cs_widget(){448 function __construct(){ 449 449 // setup the new widget 450 450 $widget_ops = array('classname' => 'pgeek_cs_widget_class', 451 451 'description' => __('Display context that is related to the current post or page, or nothing if no context is set', 'pgeek-cs') ); 452 $this->WP_Widget('pgeek_cs_widget', __('PG Context Sidebar', 'pgeek-cs'), $widget_ops);452 parent::__construct('pgeek_cs_widget', __('PG Context Sidebar', 'pgeek-cs'), $widget_ops); 453 453 } 454 454 -
pg-context-sidebar/trunk/readme.txt
r1461384 r1663777 4 4 Tags: post sidebar, page sidebar, context sidebar, custom sidebars, content aware sidebar, content sidebar 5 5 Requires at least: 3.3 6 Tested up to: 4. 5.37 Stable tag: 2. 0.16 Tested up to: 4.7.5 7 Stable tag: 2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 58 58 == Changelog == 59 59 60 = Version 2.1 = 61 * Updated Widget constructor to newer PHP version to prevent depreciation warnings in debug log 62 * Tested with WordPress 4.7.5 63 60 64 = Version 2.0.1 = 61 * Tested compat ability with WordPress 3.8.165 * Tested compatibility with WordPress 3.8.1 62 66 * Added logic to stop the sidebar icon showing in post types where it had not been selected. 63 * Added the ability to exclude the copy functional lity from some post types (was failing for some blogs with a large number of posts)67 * Added the ability to exclude the copy functionality from some post types (was failing for some blogs with a large number of posts) 64 68 65 69 = Version 2.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.