-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathreadme-plugin.txt
92 lines (68 loc) · 3.7 KB
/
readme-plugin.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
=== CMB2 Metatabs Options ===
Contributors: rogerlos
Donate link: http://rogerlos.com
Tags: cmb2, metaboxes, forms, fields, options, settings, tabs, cmo
Requires at least: 3.8.0
Tested up to: 4.7.2
Stable tag: 1.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Extends CMB2--create WordPress options pages with multiple metaboxes,
support for tabs, and flexible menu locations.
== Description ==
CMB2 Metatabs Options (CMO) is a plugin for developers using CMB2 to manage metaboxes and fields.
CMO makes it easy to create options pages with multiple metaboxes--and optional WordPress admin tabs.
You can attach your option page(s) to any existing Wordpress menu or add them as a new
top-level menu.
This plugin requires the [CMB2 Plugin](http://wordpress.org/plugins/cmb2/), or your project
must already utilize the [CMB2](https://github.com/WebDevStudios/CMB2) library. CMB2 is *not* included.
Please see the wiki at CMO's github repository for a
[detailed user's guide](https://github.com/rogerlos/cmb2-metatabs-options/wiki).
Thanks to the folks maintaining CMB2 for their continued development, and providing the
starting point for this plugin.
== Installation ==
Download the plugin zip file and add via Plugins->Add New->Upload. Or FTP the unzipped plugin folder to
your wp_content/plugins directory. Activate the plugin within WP admin.
Note this plugin does nothing by default other than give you access to the Cmb2_Metatabs_Options() class.
You can see an example of what this plugin does by using the WP plugin editor and uncommenting the line
in the main plugin file which reads "include 'example.php';".
== Frequently Asked Questions ==
See the [wiki](https://github.com/rogerlos/cmb2-metatabs-options/wiki/Troubleshooting) troubleshooting page.
== Upgrade Notice ==
None.
== Changelog ==
= 1.3 =
* Added "Reset Options" button. Thanks @rubengc
= 1.2 =
* Added test to see if autoloader has already been loaded. Thanks @rubengc
* Added menu argument 'view_capability' to set page viewing capability. Idea: @Julianoe
* Added argument 'plugincss': disables plugin css, still allows custom CSS via 'admincss'. Idea: @jquimera
* Added wp box nonces to options page form. Bug report: @Jekyll4k, @Kaleidosko
= 1.1.2 =
* Changed way empty string was passed in before- and after-form filters, now supports cumulative filtering
= 1.1.1 =
* Added 'admincss' parameter to turn off (false) or inject your own css (string) into admin page
* Added 'class' to allow class(es) to be added to the WordPress admin page wrapper
* Code cleanup to WordPress standards
= 1.1.0 =
* Oops: Class now works when adding multiple options pages
* New: add options page(s) to multisite network menus
* New: argument parameters to turn off calls to CMB2_Box::get_all() and make registering the option optional
* New: page load actions can now be passed into the contructor
* Improved: 'boxes' array may now contain either/mixed CMB2 box objects / CMB2 box ids
* Improved: Less reliance on options key to trigger internal events
* Improved: Tighter checks for when to load plugin JS and CSS
* Improved: before and after filters now pass page id as second argument (useful for multiple pages)
* Bug fix: Submenu page added with same slug as parent works as WP gods intended
* Bug fix: Wrong parameter passed to localized JS fixed
* Note: Extensive use of closures requires PHP >= 5.3
= 1.0.3 =
* Added composer.json -- thanks misfist
* Changed should_save() method to static -- thanks chrisgherbert
= 1.0.2 =
* Revised the menu building method and injected properties to be clearer and more dependable -- thanks ajuliano
* Added multidimensional argument parsing method
= 1.0.1 =
* code refactoring and comment revisions
= 1.0.0 =
* Initial release.