You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.txt
+33-8Lines changed: 33 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -12,22 +12,33 @@ This plugin is intended to be used as a boilerplate for creating quick WordPress
12
12
== Description ==
13
13
This is a boilerplate WordPress plugin featuring namespace autoloading and integration with [Carbon Fields](https://github.com/htmlburger/carbon-fields).
14
14
15
-
It is intended to be used as a starting point for creating quick WordPress plugins.
15
+
It is intended to be used as a starting point for quickly creating WordPress plugins.
16
+
17
+
= Requirements =
18
+
19
+
* WordPress 4.0 or higher
20
+
* PHP 5.4 or higher
16
21
17
22
== Installation ==
18
23
19
24
= Zip File =
20
25
21
26
1. Download the ZIP distribution from Github.
22
27
2. Extract to your plugin folder.
23
-
3. Activate the plugin in WordPress admin.
24
-
4. Go to Settings > WordPress Base Plugin to see a sample settings page.
28
+
3. Configure & run Composer.
29
+
30
+
= Clone Repository =
31
+
32
+
1. At command prompt, change to your `wp-content/plugins` directory.
33
+
2. Close the repository: `git clone https://github.com/dmhendricks/wordpress-base-plugin.git`
34
+
3. Configure & run Composer.
25
35
26
-
= Git Clone =
36
+
= Composer =
27
37
28
-
1. Clone the plugin from the GitHub repo to your WordPress plugins folder.
29
-
3. Activate the plugin in WordPress admin.
30
-
4. Go to Settings > WordPress Base Plugin to see a sample settings page.
38
+
Once you have the source files:
39
+
40
+
1. Modify `composer.json` to suit your needs
41
+
2. Run `composer install` to install dependencies and autoload namespace
31
42
32
43
== Frequently Asked Questions ==
33
44
= Q. What is Composer? =
@@ -37,5 +48,19 @@ A. Composer is an application-level package manager for the PHP programming lang
37
48
1. Settings Page
38
49
39
50
== Changelog ==
51
+
= 0.2.0 =
52
+
* Added Object Cache class
53
+
* Added example of loading Font Awesome if enabled in plugin settings
0 commit comments