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
- Host: GitHub
- URL: https://github.com/tfirdaus/butterbean-extend
- Owner: tfirdaus
- License: gpl-2.0
- Created: 2017-01-21T03:26:56.000Z (about 9 years ago)
- Default Branch: develop
- Last Pushed: 2017-01-21T06:46:47.000Z (about 9 years ago)
- Last Synced: 2025-02-01T19:45:00.005Z (about 1 year ago)
- Topics: extention, framework, metaboxes, wordpress
- Language: PHP
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
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`.