Skip to content

Commit 580de9c

Browse files
author
Miika Arponen
committed
1.13.1
1 parent 2a0ec5c commit 580de9c

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## [1.13.1] - 2018-03-19
88

99
### Changed
10-
- Moved add_rewrite_tag calls to init
10+
- Moved add_rewrite_tag calls to init hook.
1111

1212
## [1.13.0] - 2018-03-15
1313

dustpress.php

+10-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Author: Miika Arponen & Ville Siltala / Geniem Oy
77
Author URI: http://www.geniem.com
88
License: GPLv3
9-
Version: 1.13.0
9+
Version: 1.13.1
1010
*/
1111

1212
final class DustPress {
@@ -115,8 +115,15 @@ protected function __construct() {
115115
}
116116

117117
/**
118-
* Register custom route rewrite tag
119-
*/
118+
* Register custom route rewrite tags
119+
*
120+
* @type function
121+
* @date 19/3/2019
122+
* @since 1.13.1
123+
*
124+
* @param N/A
125+
* @return N/A
126+
*/
120127
public function rewrite_tags() {
121128
// Register custom route rewrite tag
122129
add_rewrite_tag( '%dustpress_custom_route%', '([^\/]+)' );

0 commit comments

Comments
 (0)