Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

load 'after_setup_theme' #34

Merged
merged 2 commits into from
Feb 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
vendor
package-lock.json
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Microformats 2 #
**Contributors:** pfefferle, dshanske
**Contributors:** pfefferle, dshanske, indieweb
**Tags:** microformats, indieweb
**Requires at least:** 4.7
**Tested up to:** 4.8
**Stable tag:** 1.0.1
**Tested up to:** 4.9.4
**Stable tag:** 1.1.0

Enhances your WordPress theme with Microformats 2 classes.

Expand All @@ -30,6 +30,11 @@ Microformats 2 classes. Most commonly, the classic Microformats class hentry.

Project actively developed on Github at [indieweb/wordpress-uf2](https://github.com/indieweb/wordpress-uf2). Please file support issues there.

### 1.1.0 ###

* Better handling for unattached images (props @kraftbj)
* Fixed proper `current_theme_supports` handling

### 1.0.1 ###

* WP.org version
Expand Down
14 changes: 7 additions & 7 deletions languages/wp-uf2.pot
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# Copyright (C) 2017 IndieWeb WordPress Outreach Club
# This file is distributed under the same license as the wp-uf2 package.
# Copyright (C) 2018 IndieWeb WordPress Outreach Club
# This file is distributed under the same license as the Microformats 2 package.
msgid ""
msgstr ""
"Project-Id-Version: wp-uf2 1.0.0\n"
"Project-Id-Version: Microformats 2 1.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-uf2\n"
"POT-Creation-Date: 2017-06-21 07:04:17+00:00\n"
"POT-Creation-Date: 2018-02-18 20:16:04+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"X-Generator: grunt-wp-i18n 0.5.4\n"

#. Plugin Name of the plugin/theme
msgid "wp-uf2"
msgid "Microformats 2"
msgstr ""

#. Plugin URI of the plugin/theme
msgid "https://github.com/indieweb/wordpress-uf2"
msgstr ""

#. Description of the plugin/theme
msgid "Adds microformats2 support to your WordPress installation or theme"
msgid "Adds Microformats 2 support to your WordPress installation or theme"
msgstr ""

#. Author of the plugin/theme
Expand Down
11 changes: 8 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
=== Microformats 2 ===
Contributors: pfefferle, dshanske
Contributors: pfefferle, dshanske, indieweb
Tags: microformats, indieweb
Requires at least: 4.7
Tested up to: 4.8
Stable tag: 1.0.1
Tested up to: 4.9.4
Stable tag: 1.1.0

Enhances your WordPress theme with Microformats 2 classes.

Expand All @@ -30,6 +30,11 @@ Microformats 2 classes. Most commonly, the classic Microformats class hentry.

Project actively developed on Github at [indieweb/wordpress-uf2](https://github.com/indieweb/wordpress-uf2). Please file support issues there.

= 1.1.0 =

* Better handling for unattached images (props @kraftbj)
* Fixed proper `current_theme_supports` handling

= 1.0.1 =

* WP.org version
Expand Down
4 changes: 2 additions & 2 deletions wp-uf2.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* Description: Adds Microformats 2 support to your WordPress installation or theme
* Author: IndieWeb WordPress Outreach Club
* Author URI: https://indieweb.org/WordPress_Outreach_Club
* Version: 1.0.1
* Version: 1.1.0
* Text Domain: wp-uf2
*/

add_action( 'plugins_loaded', array( 'UF2_Plugin', 'init' ) );
add_action( 'after_setup_theme', array( 'UF2_Plugin', 'init' ), 99 );

/**
* Adds Microformats 2 support to your WordPress theme
Expand Down