Changeset 1002961
- Timestamp:
- 10/07/2014 01:46:58 AM (11 years ago)
- Location:
- dynamics-sidebars/trunk
- Files:
-
- 3 edited
-
dynamics-sidebars.php (modified) (1 diff)
-
includes/class-dynamic-sidebars.php (modified) (2 diffs)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynamics-sidebars/trunk/dynamics-sidebars.php
r587537 r1002961 7 7 * Author Name: Alysson Bortoli 8 8 * Author URI: http://twitter.com/akbortoli 9 * Version: 1.0. 69 * Version: 1.0.7 10 10 * License: GPLv2 or later 11 11 */ 12 12 13 /* Copyright 2012 Alysson Bortoli (email : a lysson.web@gmail.com)13 /* Copyright 2012 Alysson Bortoli (email : akbortoli@gmail.com) 14 14 15 15 This program is free software; you can redistribute it and/or modify -
dynamics-sidebars/trunk/includes/class-dynamic-sidebars.php
r587537 r1002961 96 96 * @return object 97 97 */ 98 public function get_instance()98 public static function get_instance() 99 99 { 100 100 if ( empty( self::$instance ) ) { … … 508 508 'description' => sprintf( __( '%s widget area', DS_PLUGIN_I18N_DOMAIN ), ucfirst( $sidebar->name ) ), 509 509 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 510 'after_widget' => '</li>', 'after_widget',510 'after_widget' => '</li>', 511 511 'before_title' => '<h3 class="widget-title">', 512 'after_title' => '</h3>', 'after_title',512 'after_title' => '</h3>', 513 513 ); 514 514 -
dynamics-sidebars/trunk/readme.txt
r587537 r1002961 1 1 === Dynamics Sidebars === 2 2 3 Contributors: alyssonweb 3 Contributors: alyssonweb, akbortoli 4 4 Tags: sidebar, custom, dynamic, widget, different 5 5 Requires at least: 3.0 6 Tested up to: 3.4.17 Stable tag: 1.0. 66 Tested up to: 4.0 7 Stable tag: 1.0.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6NTZTQUPXP8F2 11 11 12 Have a custom sidebar (widget area) for every pages, posts and/or custom post types. 13 12 DS adds functionality to display different widgets in a sidebar, according to a context (for example, a specific page). 14 13 15 14 == Description == 16 15 17 Want your pages, posts and/or custom post types to have different sidebar? 18 An awesome plugin that let you have a custom sidebar (widget area) for every page, post and/or custom post type. 16 With DS, it's possible to change the widgets that display in a sidebar (widgetized area) according to a context (for example, a specific page). Setting up a custom widget area to display across multiple conditions is as easy as a few clicks and code changes. 19 17 20 18 [Documentation](https://github.com/alyssonweb/wp-dynamics-sidebars/wiki) | [Support Forum](https://github.com/alyssonweb/wp-dynamics-sidebars/issues) … … 96 94 'description' => "$sidebar_name widget area", 97 95 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 98 'after_widget' => '</li>', 'after_widget',96 'after_widget' => '</li>', 99 97 'before_title' => '<h3 class="widget-title">', 100 'after_title' => '</h3>', 'after_title',98 'after_title' => '</h3>', 101 99 ); 102 100 … … 105 103 ?>` 106 104 107 [Documentation](https://github.com/a lyssonweb/wp-dynamics-sidebars/wiki) | [Support Forum](https://github.com/alyssonweb/wp-dynamics-sidebars/issues)105 [Documentation](https://github.com/akbortoli/wp-dynamics-sidebars/wiki) | [Support Forum](https://github.com/akbortoli/wp-dynamics-sidebars/issues) 108 106 109 107 **Don't forget to check the 'Other Notes' tab for a list of all function and hook you can use.** … … 114 112 115 113 * Requires at least: 3.0 116 * Tested up to: 3.4.1114 * Tested up to: 4.0 117 115 118 116 **Install** … … 137 135 138 136 == Changelog == 137 138 = 1.0.7 = 139 140 * Fix Strict Standards: Non-static method Dynamic_Sidebars::get_instance() should not be called statically in /home/public_html/wp-content/plugins/dynamics-sidebars/dynamics-sidebars.php on line 52 141 142 Thanks to @[leninkster](https://profiles.wordpress.org/leninkster/) 139 143 140 144 = 1.0.6 =
Note: See TracChangeset
for help on using the changeset viewer.