'open-meta-box', 'title' => esc_html__('Dynamic Sidebar','amaz-store'), 'pages' => array('page','post','product'),// custom post type array('page','post', 'link') 'context' => 'side', 'priority' => 'low', 'fields' => array( array( 'name' => esc_html__('Sidebar','amaz-store'), 'id' => $prefix . 'sidebar_dyn', 'type' => 'select', 'std' => 'right', 'options' => array( array("value" => 'default',"name" => esc_html__('Customizer Settings','amaz-store')), array("value" => 'right',"name" => esc_html__('Right Sidebar','amaz-store')), array("value" => 'no-sidebar',"name" => esc_html__('No Sidebar','amaz-store')), array("value" => 'left',"name" => esc_html__('Left Sidebar','amaz-store')), ) ), ) ) ); foreach ($meta_boxes as $meta_box){ $my_box = new amaz_store_thMetaDataClass($meta_box); } class amaz_store_thMetaDataClass { protected $_meta_box; // create meta box based on given data function __construct($meta_box) { $this->_meta_box = $meta_box; add_action('admin_menu', array(&$this, 'add')); add_action('save_post', array(&$this, 'save')); } /// Add meta box for multiple post types function add(){ foreach ($this->_meta_box['pages'] as $page) { add_meta_box($this->_meta_box['id'], $this->_meta_box['title'], array(&$this, 'show'), $page, $this->_meta_box['context'], $this->_meta_box['priority']); } } // Callback function to show fields in meta box function show(){ global $post; // Use nonce for verification echo ''; echo '
'; foreach ($this->_meta_box['fields'] as $field) { // get current post meta data $meta = get_post_meta($post->ID, $field['id'], true); echo '
', '

', esc_html($field['name']), '

', '

'; switch ($field['type']) { case 'text': echo '', '
', esc_html($field['desc']); break; case 'textarea': echo '', '
', esc_html($field['desc']); break; case 'select': echo ''; break; case 'radio': foreach ($field['options'] as $option) { $checked=''; if($field['std']==$option['value'] && empty($meta)){ $checked = 'checked="checked"'; }elseif($meta==$option['value']){ $checked = 'checked="checked"'; } echo '', esc_html($option['name']); echo '
'; } break; case 'checkbox': echo ''.esc_html($field['nameslug']); break; } echo '

', '

'; } echo '
'; } // Save data from meta box function save($post_id) { // verify nonce if (!isset($_POST['th_dynamic_custom_box_nonce']) || !wp_verify_nonce($_POST['th_dynamic_custom_box_nonce'], basename(__FILE__))) { return $post_id; } // check autosave if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { return $post_id; } // check permissions if ('page' == $_POST['post_type']) { if (!current_user_can('edit_page', $post_id)) { return $post_id; } } elseif (!current_user_can('edit_post', $post_id)) { return $post_id; } foreach ($this->_meta_box['fields'] as $field){ $old = get_post_meta($post_id, $field['id'], true); $new = sanitize_key($_POST[$field['id']]); if($new && $new != $old){ update_post_meta($post_id, $field['id'], $new); }elseif('' == $new && $old){ delete_post_meta($post_id, $field['id'], $old); } } } }