Version Description
- Fixed broken closing H2 tag for WooCommerce subtitle. Props @faktorvier.
Download this release
Release Info
| Developer | husobj |
| Plugin | |
| Version | 3.3.1 |
| Comparing to | |
| See all releases | |
Code changes from version 3.3 to 3.3.1
- CHANGELOG.md +7 -1
- README.md +3 -0
- plugin/includes/compat/woocommerce.php +1 -1
- readme.txt +8 -2
- wp-subtitle.php +1 -1
CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
| 2 |
All notable changes to this project will be documented in this file.
|
| 3 |
This project adheres to [Semantic Versioning](http://semver.org/).
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
## [3.3] - 2019-09-04
|
| 6 |
|
| 7 |
### Changed
|
|
@@ -163,7 +168,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
| 163 |
### Added
|
| 164 |
- First version.
|
| 165 |
|
| 166 |
-
[Unreleased]: https://github.com/benhuson/wp-subtitle/compare/3.3...HEAD
|
|
|
|
| 167 |
[3.3]: https://github.com/benhuson/wp-subtitle/compare/3.2...3.3
|
| 168 |
[3.2]: https://github.com/benhuson/wp-subtitle/compare/3.1...3.2
|
| 169 |
[3.1]: https://github.com/benhuson/wp-subtitle/compare/3.0...3.1
|
| 2 |
All notable changes to this project will be documented in this file.
|
| 3 |
This project adheres to [Semantic Versioning](http://semver.org/).
|
| 4 |
|
| 5 |
+
## [3.3.1] - 2020-01-29
|
| 6 |
+
|
| 7 |
+
### Fixed
|
| 8 |
+
- Fixed broken closing H2 tag for WooCommerce subtitle. Props @faktorvier.
|
| 9 |
+
|
| 10 |
## [3.3] - 2019-09-04
|
| 11 |
|
| 12 |
### Changed
|
| 168 |
### Added
|
| 169 |
- First version.
|
| 170 |
|
| 171 |
+
[Unreleased]: https://github.com/benhuson/wp-subtitle/compare/3.3.1...HEAD
|
| 172 |
+
[3.3.1]: https://github.com/benhuson/wp-subtitle/compare/3.3...3.3.1
|
| 173 |
[3.3]: https://github.com/benhuson/wp-subtitle/compare/3.2...3.3
|
| 174 |
[3.2]: https://github.com/benhuson/wp-subtitle/compare/3.1...3.2
|
| 175 |
[3.1]: https://github.com/benhuson/wp-subtitle/compare/3.0...3.1
|
README.md
CHANGED
|
@@ -140,6 +140,9 @@ The plugin is [hosted on GitHub](https://github.com/benhuson/wp-subtitle) and pu
|
|
| 140 |
Upgrade Notice
|
| 141 |
--------------
|
| 142 |
|
|
|
|
|
|
|
|
|
|
| 143 |
### 3.3
|
| 144 |
New API for getting and displaying the subtitle using `do_action( 'plugins/wp_subtitle/the_subtitle' )` and `apply_filters( 'plugins/wp_subtitle/get_subtitle', '' )`. Please see the documentation.
|
| 145 |
|
| 140 |
Upgrade Notice
|
| 141 |
--------------
|
| 142 |
|
| 143 |
+
### 3.3.1
|
| 144 |
+
Fixed broken closing H2 tag for WooCommerce subtitle.
|
| 145 |
+
|
| 146 |
### 3.3
|
| 147 |
New API for getting and displaying the subtitle using `do_action( 'plugins/wp_subtitle/the_subtitle' )` and `apply_filters( 'plugins/wp_subtitle/get_subtitle', '' )`. Please see the documentation.
|
| 148 |
|
plugin/includes/compat/woocommerce.php
CHANGED
|
@@ -63,7 +63,7 @@ class WPSubtitle_WooCommerce {
|
|
| 63 |
|
| 64 |
do_action( 'plugins/wp_subtitle/the_subtitle', array(
|
| 65 |
'before' => '<h2 class="product_subtitle entry-subtitle wp-subtitle">',
|
| 66 |
-
'after' => '</
|
| 67 |
) );
|
| 68 |
|
| 69 |
}
|
| 63 |
|
| 64 |
do_action( 'plugins/wp_subtitle/the_subtitle', array(
|
| 65 |
'before' => '<h2 class="product_subtitle entry-subtitle wp-subtitle">',
|
| 66 |
+
'after' => '</h2>'
|
| 67 |
) );
|
| 68 |
|
| 69 |
}
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: husobj, husani
|
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SLZUF4XJTS4E6
|
| 4 |
Tags: subtitle, content, title, subheading, subhead, alternate title
|
| 5 |
Requires at least: 3.7
|
| 6 |
-
Tested up to: 5.2
|
| 7 |
-
Stable tag: 3.3
|
| 8 |
License: GPLv2
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
| 10 |
|
|
@@ -153,6 +153,9 @@ The plugin is [hosted on GitHub](https://github.com/benhuson/wp-subtitle) and pu
|
|
| 153 |
|
| 154 |
== Changelog ==
|
| 155 |
|
|
|
|
|
|
|
|
|
|
| 156 |
= 3.3 =
|
| 157 |
* New API for displaying the subtitle using `do_action( 'plugins/wp_subtitle/the_subtitle' )`.
|
| 158 |
* New API for getting the subtitle using `apply_filters( 'plugins/wp_subtitle/get_subtitle', '' )`.
|
|
@@ -247,6 +250,9 @@ The plugin is [hosted on GitHub](https://github.com/benhuson/wp-subtitle) and pu
|
|
| 247 |
|
| 248 |
== Upgrade Notice ==
|
| 249 |
|
|
|
|
|
|
|
|
|
|
| 250 |
= 3.3 =
|
| 251 |
New API for getting and displaying the subtitle using `do_action( 'plugins/wp_subtitle/the_subtitle' )` and `apply_filters( 'plugins/wp_subtitle/get_subtitle', '' )`. Please see the documentation.
|
| 252 |
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SLZUF4XJTS4E6
|
| 4 |
Tags: subtitle, content, title, subheading, subhead, alternate title
|
| 5 |
Requires at least: 3.7
|
| 6 |
+
Tested up to: 5.3.2
|
| 7 |
+
Stable tag: 3.3.1
|
| 8 |
License: GPLv2
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
| 10 |
|
| 153 |
|
| 154 |
== Changelog ==
|
| 155 |
|
| 156 |
+
= 3.3.1 =
|
| 157 |
+
* Fixed broken closing H2 tag for WooCommerce subtitle. Props @faktorvier.
|
| 158 |
+
|
| 159 |
= 3.3 =
|
| 160 |
* New API for displaying the subtitle using `do_action( 'plugins/wp_subtitle/the_subtitle' )`.
|
| 161 |
* New API for getting the subtitle using `apply_filters( 'plugins/wp_subtitle/get_subtitle', '' )`.
|
| 250 |
|
| 251 |
== Upgrade Notice ==
|
| 252 |
|
| 253 |
+
= 3.3.1 =
|
| 254 |
+
Fixed broken closing H2 tag for WooCommerce subtitle.
|
| 255 |
+
|
| 256 |
= 3.3 =
|
| 257 |
New API for getting and displaying the subtitle using `do_action( 'plugins/wp_subtitle/the_subtitle' )` and `apply_filters( 'plugins/wp_subtitle/get_subtitle', '' )`. Please see the documentation.
|
| 258 |
|
wp-subtitle.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
Plugin Name: WP Subtitle
|
| 5 |
Plugin URI: http://wordpress.org/plugins/wp-subtitle/
|
| 6 |
Description: Adds a subtitle field to pages and posts. Possible to add support for custom post types.
|
| 7 |
-
Version: 3.3
|
| 8 |
Author: Ben Huson, Husani Oakley
|
| 9 |
Author URI: https://github.com/benhuson/wp-subtitle
|
| 10 |
License: GPLv2
|
| 4 |
Plugin Name: WP Subtitle
|
| 5 |
Plugin URI: http://wordpress.org/plugins/wp-subtitle/
|
| 6 |
Description: Adds a subtitle field to pages and posts. Possible to add support for custom post types.
|
| 7 |
+
Version: 3.3.1
|
| 8 |
Author: Ben Huson, Husani Oakley
|
| 9 |
Author URI: https://github.com/benhuson/wp-subtitle
|
| 10 |
License: GPLv2
|
