Changeset 571522
- Timestamp:
- 07/13/2012 01:05:38 AM (14 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) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynamics-sidebars/trunk/dynamics-sidebars.php
r571510 r571522 7 7 * Author Name: Alysson Bortoli 8 8 * Author URI: http://twitter.com/akbortoli 9 * Version: 1.0. 39 * Version: 1.0.4 10 10 * License: GPLv2 or later 11 11 */ -
dynamics-sidebars/trunk/includes/class-dynamic-sidebars.php
r571510 r571522 69 69 add_post_type_support( 'page', 'custom-sidebar' ); 70 70 71 // Hook up actions 72 add_action( 'init', array( &$this, 'register_sidebars' ), 11 ); 73 71 74 if ( is_admin() ) { 72 // Hook up actions73 75 add_action( 'init', array( &$this, 'register_column' ), 100 ); 74 add_action( 'init', array( &$this, 'register_sidebars' ), 11 );75 76 add_action( 'add_meta_boxes', array( &$this, 'add_metabox' ), 12 ); 76 77 add_action( 'admin_enqueue_scripts', array( &$this, 'enqueue_script_style' ) ); … … 79 80 add_action( 'wp_ajax_ds_save_post', array( &$this, 'save_ajax' ) ); 80 81 add_action( 'wp_ajax_ds_update_select', array( &$this, 'update_select' ) ); 81 add_action( 'save_post', array( &$this, 'save' ) ); 82 } 82 } 83 84 add_action( 'save_post', array( &$this, 'save' ) ); 83 85 84 86 // hook -
dynamics-sidebars/trunk/readme.txt
r571512 r571522 5 5 Requires at least: 3.0 6 6 Tested up to: 3.4.1 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 137 137 138 138 == Changelog == 139 140 = 1.0.4 = 141 142 * Fixed issue where sidebar is not registered. 139 143 140 144 = 1.0.3 = … … 202 206 == Upgrade Notice == 203 207 204 Changed to Filter 'ds_save_ajax_message' 208 Fixed issue where sidebar is not registered 205 209 206 210 == Internationalization (i18n) ==
Note: See TracChangeset
for help on using the changeset viewer.