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
[Microformats2](https://indieweb.org/microformats) are a key [building-block](https://indieweb.org/Category:building-blocks) of the IndieWeb, but it is very hard (if not impossible) to get Microformats2 as a core feature for all WordPress themes. There are several themes that are supporting Microformats2, but everyone should choose his prefered theme and should not be limited to use one of the [few community themes](https://indieweb.org/WordPress/Themes). After [a lot of discussions](https://github.com/indieweb/wordpress-uf2/issues/30) and some different plugin approaches, we are trying to provide an alternate ([`rel=altenate`](https://indieweb.org/rel-alternate)) representation of the microformatted HTML.
16
+
Provides a [Microformats2 JSON](http://microformats.org/wiki/microformats2-parsing) "Feed" for every WordPress URL, and helps to allow other sites to get pre-parsed [Microformats-JSON](https://indieweb.org/jf2) even if the theme
17
+
does not support Microformats2.
17
18
18
-
The `mf2-feed` plugin provides a [Microformats2 JSON](http://microformats.org/wiki/microformats2-parsing) "Feed" for every WordPress URL, and helps to get a pre-parsed [Microformats-JSON](https://indieweb.org/jf2) even if the theme does not support Microformats2.
19
+
[Microformats2](https://indieweb.org/microformats) are a key [building-block](https://indieweb.org/Category:building-blocks) of the IndieWeb, but it is very hard (if not impossible) to get Microformats2 as a core feature for all WordPress themes. There are several themes that are supporting Microformats2, but everyone should choose his prefered theme and should not be limited to use one of the [few community themes](https://indieweb.org/WordPress/Themes). After [a lot of discussions](https://github.com/indieweb/wordpress-uf2/issues/30) and some different plugin approaches, we are trying to provide an alternate ([`rel=altenate`](https://indieweb.org/rel-alternate)) representation of the microformatted HTML.
19
20
20
21
The plugin is inspired by the URL design of [p3k](https://github.com/aaronpk/p3k) of [@aaronpk](https://github.com/aaronpk).
21
22
@@ -35,7 +36,7 @@ WordPress Example:
35
36
36
37
### What are Microformats 2? ###
37
38
38
-
Microformats are a simple way to markup structured information in HTML. WordPress incorporates some classic Microformats. Microformats 2 supersedes class microformats.
39
+
Microformats are a simple way to markup structured information in HTML using classes. WordPress incorporates some classic Microformats. Microformats 2 supersedes classic microformats.
39
40
40
41
## Installation ##
41
42
@@ -79,6 +80,15 @@ To install a WordPress Plugin manually:
79
80
80
81
Project actively developed on Github at [indieweb/wordpress-mf2-feed](https://github.com/indieweb/wordpress-mf2-feed). Please file support issues there.
81
82
83
+
### 3.0.0 ###
84
+
* Refactored to match the configuration of feeds built into WordPress
85
+
* Bumped PHP Version requirement to PHP5.6 to match WordPress 5.3
86
+
* Bumped minimum WordPress version to 5.2 as this allows for the version of get_content that includes a $post parameter
87
+
* Fixed incorrect PHPCS configuration
88
+
* Enabled JSON Pretty Print by default as originally disabled due a PHP5.4 requirement
89
+
* Changed Post Item Generation Class to use WordPress functions instead of directly accessing the data where applicable
90
+
* Adjusted jf2 feed to comply with jf2feed spec (https://jf2.spec.indieweb.org/#jf2feed)
[Microformats2](https://indieweb.org/microformats) are a key [building-block](https://indieweb.org/Category:building-blocks) of the IndieWeb, but it is very hard (if not impossible) to get Microformats2 as a core feature for all WordPress themes. There are several themes that are supporting Microformats2, but everyone should choose his prefered theme and should not be limited to use one of the [few community themes](https://indieweb.org/WordPress/Themes). After [a lot of discussions](https://github.com/indieweb/wordpress-uf2/issues/30) and some different plugin approaches, we are trying to provide an alternate ([`rel=altenate`](https://indieweb.org/rel-alternate)) representation of the microformatted HTML.
16
+
Provides a [Microformats2 JSON](http://microformats.org/wiki/microformats2-parsing) "Feed" for every WordPress URL, and helps to allow other sites to get pre-parsed [Microformats-JSON](https://indieweb.org/jf2) even if the theme
17
+
does not support Microformats2.
17
18
18
-
The `mf2-feed` plugin provides a [Microformats2 JSON](http://microformats.org/wiki/microformats2-parsing) "Feed" for every WordPress URL, and helps to get a pre-parsed [Microformats-JSON](https://indieweb.org/jf2) even if the theme does not support Microformats2.
19
+
[Microformats2](https://indieweb.org/microformats) are a key [building-block](https://indieweb.org/Category:building-blocks) of the IndieWeb, but it is very hard (if not impossible) to get Microformats2 as a core feature for all WordPress themes. There are several themes that are supporting Microformats2, but everyone should choose his prefered theme and should not be limited to use one of the [few community themes](https://indieweb.org/WordPress/Themes). After [a lot of discussions](https://github.com/indieweb/wordpress-uf2/issues/30) and some different plugin approaches, we are trying to provide an alternate ([`rel=altenate`](https://indieweb.org/rel-alternate)) representation of the microformatted HTML.
19
20
20
21
The plugin is inspired by the URL design of [p3k](https://github.com/aaronpk/p3k) of [@aaronpk](https://github.com/aaronpk).
21
22
@@ -35,7 +36,7 @@ WordPress Example:
35
36
36
37
= What are Microformats 2? =
37
38
38
-
Microformats are a simple way to markup structured information in HTML. WordPress incorporates some classic Microformats. Microformats 2 supersedes class microformats.
39
+
Microformats are a simple way to markup structured information in HTML using classes. WordPress incorporates some classic Microformats. Microformats 2 supersedes classic microformats.
39
40
40
41
== Installation ==
41
42
@@ -79,6 +80,15 @@ To install a WordPress Plugin manually:
79
80
80
81
Project actively developed on Github at [indieweb/wordpress-mf2-feed](https://github.com/indieweb/wordpress-mf2-feed). Please file support issues there.
81
82
83
+
= 3.0.0 =
84
+
* Refactored to match the configuration of feeds built into WordPress
85
+
* Bumped PHP Version requirement to PHP5.6 to match WordPress 5.3
86
+
* Bumped minimum WordPress version to 5.2 as this allows for the version of get_content that includes a $post parameter
87
+
* Fixed incorrect PHPCS configuration
88
+
* Enabled JSON Pretty Print by default as originally disabled due a PHP5.4 requirement
89
+
* Changed Post Item Generation Class to use WordPress functions instead of directly accessing the data where applicable
90
+
* Adjusted jf2 feed to comply with jf2feed spec (https://jf2.spec.indieweb.org/#jf2feed)
0 commit comments