Skip to content

Commit

Permalink
Version 4.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
rilwis committed Sep 6, 2012
1 parent 6fade19 commit e6560ad
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 51 deletions.
2 changes: 1 addition & 1 deletion meta-box.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Meta Box
Plugin URI: http://www.deluxeblogtips.com/meta-box
Description: Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0
Version: 4.1.9
Version: 4.1.10
Author: Rilwis
Author URI: http://www.deluxeblogtips.com
License: GPL2+
Expand Down
98 changes: 61 additions & 37 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,83 +1,107 @@
[Project Page](http://www.deluxeblogtips.com/meta-box/) | [Support Forums](http://www.deluxeblogtips.com/forums/) | [Donate](http://www.deluxeblogtips.com/donate/)
[Project Page](http://www.deluxeblogtips.com/meta-box/) | [Getting Started](http://www.deluxeblogtips.com/meta-box/getting-started/) | [Support Forums](http://www.deluxeblogtips.com/forums/) | [Donate](http://www.deluxeblogtips.com/donate/)

***

## Contributors
## Plugin Information

- [Tran Ngoc Tuan Anh a.k.a Rilwis](http://www.deluxeblogtips.com/) - Initial & lead developer
- [Franz Josef Kaiser](http://unserkaiser.com)
- Omnicia
- ruanmer
- PerWiklander
- funkedgeek
Meta Box plugin provides an API to easily implement custom meta boxes in editing pages (add new/edit post) in WordPress. It works with custom post types and supports various field types.

[See full list of angels!](https://github.com/rilwis/meta-box/contributors)
### Features

* Easily registers multiple custom meta boxes for posts, pages or custom post types
* Has built-in hooks which allow you to change the appearance and behavior of meta boxes
* Easily integrated with themes

### Supported fields

- checkbox_list
- checkbox
- color
- date
- datetime
- file
- hidden
- image
- password
- plupload_image
- radio
- select
- slider
- taxonomy
- text
- textarea
- thickbox_image
- time
- wysiwyg

***

## Meta Box Information

**Requires at least:** WordPress v3.0

**Tested up to:** WordPress v3.4.1
## Installation

Meta Box plugin provides an API to easily implement custom meta boxes in editing pages (add new/edit post) in WordPress. It works with custom post types and supports various field types.
1. Unzip the download package
1. Upload `meta-box` to the `/wp-content/plugins/` directory
1. Activate the plugin through the 'Plugins' menu in WordPress

### Description
To getting started with the plugin API, please read [this tutorial](http://www.deluxeblogtips.com/meta-box/getting-started/).

Meta Box Script for WordPress is a WordPress plugin that provides an API for you to easily implement multiple meta boxes in editing pages in WordPress. It works with custom post types and supports various field types.
***

* Create meta box for editing pages in WordPress.
* Compatible with custom post types since WordPress 3.0.
* **Support input types:** text, textarea, checkbox, checkbox list, radio box, select, wysiwyg, old & new file upload, date, time, color, slider.
## Contributors

### Installation
- [Tran Ngoc Tuan Anh a.k.a Rilwis](http://www.deluxeblogtips.com/) - Initial & lead developer
- [Franz Josef Kaiser](http://unserkaiser.com)
- Omnicia
- ruanmer
- PerWiklander
- funkedgeek

1. Unzip the download package
1. Upload `meta-box` to the `/wp-content/plugins/` directory
1. Activate the plugin through the 'Plugins' menu in WordPress
1. Copy `demo/demo.php` file from plugin directory to your theme folder
1. Open `functions.php` file of your theme and add the following code:
[See full list of angels!](https://github.com/rilwis/meta-box/contributors)

include 'demo.php';
***

To change meta box definition, please see comments in `demo.php`.
## Changelog

### Changelog
#### 4.1.10
* Allow helper functions can be used in admin area
* Allow cloned fields to have a uniquely indexed `name` attribute
* Add Swedish translation
* Allow hidden field has its own value
* Taxonomy field now supported by `rwmb_meta` function
* Improvement in code format and field normalizing

### 4.1.9
#### 4.1.9
* Add helper function to retrieve meta values
* Add basic validation (JS based)
* Fix image reorder bug
* Fix `select_tree` option for taxonomy field
* Fix not showing loading image for 1st image using plupload

### 4.1.8
#### 4.1.8
* Add missed JS file for thickbox image

### 4.1.7
#### 4.1.7
* Quick fix for thickbox image

### 4.1.6
#### 4.1.6
* Quick fix for checkbox list and multiple/clonable fields

### 4.1.5
#### 4.1.5
* Taxonomy field is now in core
* Add demo for including meta boxes for specific posts based on IDs or page templates
* Meta box ID is now optional
* Add `thickbox_image` field for uploading image with WP style
* Fix `guid` for uploaded images

### 4.1.4
#### 4.1.4
* Fix taxonomy field

### 4.1.3
#### 4.1.3
* Support max_file_uploads for plupload_image
* Better enqueue styles and scripts
* Store images in correct order after re-order
* Fix cloning color, date, time, datetime fields

### 4.1.2
#### 4.1.2
* Improve taxonomy field
* Add filter to wp_editor
* Add more options for time field
Expand Down
54 changes: 41 additions & 13 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,51 @@ Donate link: http://www.deluxeblogtips.com/donate
Tags: meta-box, custom-fields, custom-field, meta, meta-boxes
Requires at least: 3.0
Tested up to: 3.4.1
Stable tag: trunk
Stable tag: 4.1.10

Meta Box plugin helps you easily implement multiple meta boxes in editing pages in WordPress. Works with custom post types and various field types.

== Description ==

Meta Box Script for WordPress is a WordPress plugin that provides an API for you to easily implement multiple meta boxes in editing pages in WordPress. It works with custom post types and supports various field types.

* Create meta box for editing pages in WordPress.
* Compatible with custom post types since WordPress 3.0.
* Support input types: text, textarea, checkbox, checkbox list, radio box, select, wysiwyg, old & new file upload, date, time, color

[Project Page](http://www.deluxeblogtips.com/meta-box/) | [Documentation](http://www.deluxeblogtips.com/docs/) | [Forums](http://www.deluxeblogtips.com/forums/) | [Donate](http://www.deluxeblogtips.com/donate/)
Meta Box plugin provides an API to easily implement custom meta boxes in editing pages (add new/edit post) in WordPress. It works with custom post types and supports various field types.

**Features**

* Easily registers multiple custom meta boxes for posts, pages or custom post types
* Has built-in hooks which allow you to change the appearance and behavior of meta boxes
* Easily integrated with themes

**Supported fields**

- checkbox_list
- checkbox
- color
- date
- datetime
- file
- hidden
- image
- password
- plupload_image
- radio
- select
- slider
- taxonomy
- text
- textarea
- thickbox_image
- time
- wysiwyg

[Project Page](http://www.deluxeblogtips.com/meta-box/) | [Getting Started](http://www.deluxeblogtips.com/meta-box/getting-started/) | [Support Forums](http://www.deluxeblogtips.com/forums/) | [Donate](http://www.deluxeblogtips.com/donate/)

== Installation ==

1. Unzip the download package
1. Upload `meta-box` to the `/wp-content/plugins/` directory
1. Activate the plugin through the 'Plugins' menu in WordPress
1. Copy `demo/demo.php` file from plugin directory to your theme folder
1. Open `functions.php` file of your theme and add the following code:

include 'demo.php';

To change meta box definition, please see comments in `demo.php`.
To getting started with the plugin API, please read [this tutorial](http://www.deluxeblogtips.com/meta-box/getting-started/).

== Frequently Asked Questions ==

Expand All @@ -38,6 +58,14 @@ To change meta box definition, please see comments in `demo.php`.

== Changelog ==

= 4.1.10 =
* Allow helper functions can be used in admin area
* Allow cloned fields to have a uniquely indexed `name` attribute
* Add Swedish translation
* Allow hidden field has its own value
* Taxonomy field now supported by `rwmb_meta` function
* Improvement in code format and field normalizing

= 4.1.9 =
* Add helper function to retrieve meta values
* Add basic validation (JS based)
Expand Down

0 comments on commit e6560ad

Please sign in to comment.