-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74a08ea
commit 5d72fd7
Showing
5 changed files
with
87 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Deploy to WordPress SVN | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*' # Trigger deployment only when a new tag is pushed. | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: WordPress Plugin Deploy | ||
uses: 10up/action-wordpress-plugin-deploy@v2 | ||
with: | ||
svn-url: https://plugins.svn.wordpress.org/cmb2-admin-extension/ | ||
plugin-slug: cmb2-admin-extension | ||
svn-username: ${{ secrets.WORDPRESS_USERNAME }} | ||
svn-password: ${{ secrets.WORDPRESS_PASSWORD }} | ||
generate-zip: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
=== CMB2 Admin Extension === | ||
Contributors: twoelevenjay | ||
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=leon%40211j%2ecom&lc=MQ&item_name=Two%20Eleven%20Jay&no_note=0¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest | ||
Tags: metaboxes, forms, fields, options, settings | ||
Requires at least: 4.5 | ||
Tested up to: 6.0 | ||
Requires PHP: 7.0 | ||
Stable tag: 1.0.0 | ||
License: GPLv2 or later | ||
License URI: http://www.gnu.org/licenses/gpl-2.0.html | ||
|
||
== Description == | ||
CMB2 Admin Extension adds a user interface for admins to create CMB2 meta boxes from the WordPress admin. | ||
|
||
This plugin requires the most current version of the CMB2 plugin. You can find CMB2 [here](https://wordpress.org/plugins/cmb2/) and its documentation [here](https://github.com/WebDevStudios/CMB2/wiki/Field-Types#types). | ||
|
||
== Installation == | ||
1. Extract the .zip file and upload its contents to the `/wp-content/plugins/` directory. Alternatively, you can install directly through the Plugin directory within your WordPress admin. | ||
2. Activate the plugin through the 'Plugins' screen in WordPress. | ||
3. Navigate to the CMB2 Admin Extension interface within the WordPress admin to create and manage meta boxes. | ||
|
||
== Frequently Asked Questions == | ||
= Do I need CMB2 to use this extension? = | ||
Yes, CMB2 is required for this extension to work. | ||
|
||
= Where can I find documentation? = | ||
Documentation will be available in the [GitHub wiki](https://github.com/twoelevenjay/CMB2-Admin-Extension/wiki). | ||
|
||
== Changelog == | ||
= 1.0.0 = | ||
* Major version release with stability improvements and compatibility update for WordPress 6.0. | ||
* Improved user interface for managing meta boxes from the WordPress admin. | ||
|
||
= 0.2.3 = | ||
* Compatibility update for WordPress 4.9. | ||
|
||
= 0.0.2 = | ||
* Hide UI for disallowed users. | ||
|
||
= 0.0.1 = | ||
* Initial release. | ||
|
||
== Upgrade Notice == | ||
= 1.0.0 = | ||
This major version introduces stability improvements and compatibility with the latest WordPress version. | ||
|
||
== Translation == | ||
* Available in French and Portuguese. Contributions are welcome for other languages. | ||
|
||
== 3rd Party Resources == | ||
* [CMB2](https://github.com/WebDevStudios/CMB2/) from [WebDevStudios](https://webdevstudios.com). | ||
|
||
== Contribution == | ||
All contributions are welcome. Please read the [CONTRIBUTING](https://github.com/twoelevenjay/CMB2-Admin-Extension/blob/master/CONTRIBUTING.md) doc for more details. |