Skip to content

Commit acce33d

Browse files
Bump to v2.0.1
1 parent 2b67227 commit acce33d

7 files changed

+33
-5
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,17 @@ function yasglobal_exclude_posts( $post ) {
105105
add_filter( 'custom_permalinks_exclude_posts', 'yasglobal_exclude_posts' );
106106
```
107107

108+
### Allow Accents Letters
109+
110+
To allow accents letters, please add below-mentioned line in your theme `functions.php`:
111+
112+
```php
113+
function yasglobal_permalink_allow_accents() {
114+
return true;
115+
}
116+
add_filter( 'custom_permalinks_allow_accents', 'yasglobal_permalink_allow_accents' );
117+
```
118+
108119
### Allow Uppercase Letters
109120

110121
To allow uppercase letters/words, please add below-mentioned line in your theme `functions.php`:
File renamed without changes.
File renamed without changes.

custom-permalinks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Custom Permalinks
44
* Plugin URI: https://www.custompermalinks.com/
55
* Description: Set custom permalinks on a per-post basis.
6-
* Version: 2.0.0
6+
* Version: 2.0.1
77
* Requires at least: 2.6
88
* Requires PHP: 5.4
99
* Author: Sami Ahmed Siddiqui

includes/class-custom-permalinks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Custom_Permalinks {
1818
*
1919
* @var string
2020
*/
21-
public $version = '2.0.0';
21+
public $version = '2.0.1';
2222

2323
/**
2424
* Class constructor.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
"gulp-uglify": "3.0.2"
2929
},
3030
"customPermalinks": {
31-
"pluginVersion": "2.0.0"
31+
"pluginVersion": "2.0.1"
3232
}
3333
}

readme.txt

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
=== Custom Permalinks ===
2-
Contributors: sasiddiqui, michaeltyson
2+
Contributors: sasiddiqui
33
Tags: permalink, url, link, address, custom, redirect, custom post type, GDPR, GDPR Compliant
44
Tested up to: 5.8
5-
Stable tag: 2.0.0
5+
Stable tag: 2.0.1
66
License: GPLv3
77
License URI: https://www.gnu.org/licenses/gpl-3.0.html
88

@@ -115,6 +115,17 @@ function yasglobal_exclude_posts( $post ) {
115115
add_filter( 'custom_permalinks_exclude_posts', 'yasglobal_exclude_posts' );
116116
`
117117

118+
=== Allow Accents Letters ===
119+
120+
To allow accents letters, please add below-mentioned line in your theme `functions.php`:
121+
122+
`
123+
function yasglobal_permalink_allow_accents() {
124+
return true;
125+
}
126+
add_filter( 'custom_permalinks_allow_accents', 'yasglobal_permalink_allow_accents' );
127+
`
128+
118129
=== Allow Uppercase Letters ===
119130

120131
To allow uppercase letters/words, please add below-mentioned line in your theme `functions.php`:
@@ -177,6 +188,12 @@ This process defines you the steps to follow either you are installing through W
177188

178189
== Changelog ==
179190

191+
= 2.0.1 - Aug 02, 2021 =
192+
193+
* Bugs
194+
* [Plugin not save persian alphabet](https://wordpress.org/support/topic/plugin-not-save-persian-alphabet/)
195+
* [404 error when post/page custom permalink is part of category custom permalink](https://github.com/samiahmedsiddiqui/custom-permalinks/issues/49)
196+
180197
= 2.0.0 - Jul 30, 2021 =
181198

182199
* Bugs

0 commit comments

Comments
 (0)