Skip to content

Commit 83bf83a

Browse files
committed
Removed PHP closing tags
1 parent cf0b766 commit 83bf83a

2 files changed

Lines changed: 11 additions & 7 deletions

File tree

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,18 @@ This is a boilerplate WordPress plugin featuring namespace autoloading and integ
66

77
It may also be used as the means of [separating custom code](http://www.billerickson.net/core-functionality-plugin/) from the theme.
88

9+
## Features
10+
11+
* Namespaces, PSR-4, dependency autoloading
12+
* Object caching helper
13+
* [Many more to come...](#planned-features)
14+
915
## Requirements
1016

1117
* WordPress 4.0 or higher
12-
* PHP 5.4.0 or higher
18+
* PHP 5.4 or higher*
19+
20+
*PHP 5.3 will work if all of your dependencies are compatible.*
1321

1422
## Installation
1523

@@ -37,7 +45,6 @@ It may also be used as the means of [separating custom code](http://www.billeric
3745
* Possibly add TGMPA example
3846
* Allow loading Carbon Fields via [plugin](https://github.com/dmhendricks/carbon-fields-loader) rather than Composer dependency
3947
* Test compatibility with WordPress 4.0 and higher
40-
* Remove closing ?> tags per [recommendation](https://github.com/dmhendricks/wordpress-base-plugin/issues/1)
4148
* Add uninstall.php
4249

4350
## Change Log
@@ -46,19 +53,17 @@ It may also be used as the means of [separating custom code](http://www.billeric
4653

4754
* Added Object Cache class
4855
* Added example of loading Font Awesome if enabled in plugin settings
56+
* Removed closing ?> tags ([obstschale](https://github.com/dmhendricks/wordpress-base-plugin/issues/1))
4957
* Removed `./vendor` from repo
5058
* Renamed Helpers class to Utils
5159
* Tested PHP 5.4 - 7.1 compatibility
5260
* Fixed various PHP 5.3 issues; bumped minimum suggested version to 5.4.0
5361
* Added minimum PHP version check
5462
* Added screenshot
5563

56-
#### 0.1.2
57-
58-
* Moved `/src` to `/app`
59-
6064
#### 0.1.1
6165

66+
* Moved `/src` to `/app`
6267
* Refactored code
6368
* Added `is_production()` and `is_ajax()` methods
6469

wordpress-base-plugin.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,3 @@
4545
'deps' => array('php' => '5.4.0', 'carbon_fields' => '2.0.0'), // Optional
4646
'prefix' => 'myplugin_' // Change to your own unique field prefix
4747
));
48-
?>

0 commit comments

Comments
 (0)