An open API service indexing awesome lists of open source software.

https://github.com/tfirdaus/butterbean-extend

Extending Butterbean, a neat little post meta framework by @justintadlock, with custom Settings and Controls
https://github.com/tfirdaus/butterbean-extend

extention framework metaboxes wordpress

Last synced: about 1 year ago
JSON representation

Extending Butterbean, a neat little post meta framework by @justintadlock, with custom Settings and Controls

Awesome Lists containing this project

README

          

# ButterBean Extend

A plugin that extends [ButterBean](https://github.com/justintadlock/butterbean), a neat little post meta box framework by [Justin Tadlock](http://justintadlock.com).

# Installation

Load it along with the ButterBean main library, as follows:

```php
add_action( 'plugins_loaded', 'load_butterbean' );

function load_butterbean() {
require_once( 'path/to/butterbean/butterbean.php' ); // Load main ButterBean library.
require_once( 'path/to/butterbean-extend/butterbean-extend.php' ); // load ButterBean extension.
}
```

# Change Log

All notable changes to this project will be documented in this section.

## [0.0.1] - 2016-14-09
### Added
- A custom setting type: `serialize`.