https://github.com/webdevstudios/wordpress-tags-like-meta-box
A class to create tags-like meta boxes with ease.
https://github.com/webdevstudios/wordpress-tags-like-meta-box
Last synced: 9 months ago
JSON representation
A class to create tags-like meta boxes with ease.
- Host: GitHub
- URL: https://github.com/webdevstudios/wordpress-tags-like-meta-box
- Owner: WebDevStudios
- Created: 2012-02-17T14:40:02.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2018-03-13T06:04:42.000Z (about 8 years ago)
- Last Synced: 2025-01-26T06:08:21.547Z (over 1 year ago)
- Homepage:
- Size: 93.8 KB
- Stars: 11
- Watchers: 11
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WordPress Tags-Like Meta Box
The WordPress tags meta box has a great interface for dealing with data.
This helper class will allow you to customize a tags-like meta box of your own with ease.
##Use
Include the class file anywhere (in your plugin or theme), and then instantiate the class.
$myVersionOfTags = new Tags_Like_Meta_box( array( 'ID' => 'post-notes', 'nice_name' => 'Notes' );
By default the meta box is added over all post types, and saves any data into a piece of post meta for the post.
If you want to edit the capabilities, just create a subclass and edit away!