Changeset 1457838
- Timestamp:
- 07/20/2016 10:30:35 PM (10 years ago)
- Location:
- pluton-custom-sidebar
- Files:
-
- 10 added
- 2 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/js (added)
-
tags/1.0.1/assets/js/main.js (added)
-
tags/1.0.1/assets/js/main.min.js (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/languages (added)
-
tags/1.0.1/languages/pluton-custom-sidebar.pot (added)
-
tags/1.0.1/pluton-custom-sidebar.php (added)
-
tags/1.0.1/readme.txt (added)
-
trunk/pluton-custom-sidebar.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pluton-custom-sidebar/trunk/pluton-custom-sidebar.php
r1443793 r1457838 4 4 * Plugin URI: https://plutonwp.com/extension/pluton-custom-sidebar/ 5 5 * Description: Create an unlimited number of sidebars and assign unlimited number of widgets. 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Author: PlutonWP 8 8 * Author URI: https://plutonwp.com/ … … 91 91 $this->plugin_url = plugin_dir_url( __FILE__ ); 92 92 $this->plugin_path = plugin_dir_path( __FILE__ ); 93 $this->version = '1.0. 0';93 $this->version = '1.0.1'; 94 94 95 95 register_activation_hook( __FILE__, array( $this, 'install' ) ); … … 306 306 307 307 // Get tag element from theme mod for the sidebar widget title 308 $tag = pluton_get_mod( 'sidebar_headings', 'div' ) ? pluton_get_mod( 'sidebar_headings', 'div' ) : 'div';308 $tag = get_theme_mod( 'sidebar_headings', 'div' ) ? get_theme_mod( 'sidebar_headings', 'div' ) : 'div'; 309 309 310 310 // If widget areas are defined add a sidebar area for each -
pluton-custom-sidebar/trunk/readme.txt
r1443793 r1457838 4 4 Requires at least: 4.0.0 5 5 Tested up to: 4.5.3 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 == Changelog == 34 34 35 = 1.0.1 = 36 Small improvement. 37 35 38 = 1.0.0 = 36 39 Initial release.
Note: See TracChangeset
for help on using the changeset viewer.