Skip to content

Commit

Permalink
Bump to v2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
samiahmedsiddiqui committed Jul 5, 2019
1 parent 874dfc1 commit 5e13747
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 43 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Below mentioned tags are provided by the **Permalinks Customizer** for PostTypes
| %author_firstname% | A sanitized version of the author first name. If author first name is not available then it uses the author's username. |
| %author_lastname% | A sanitized version of the author last name. If author last name is not available then it uses the author's username. |

**Note**: `%title%` is similar as `%postname%` tag but the difference is that `%postname%` can only be set once by WordPress whereas `%title%` can be changed by user at multiple times. let's say the title is "This Is A Great Post!" so, it becomes "this-is-a-great-post" in the URI(At the first time, `%postname%` and `%title%` works same) but if you edit and change title let's say "This Is A WordPress Post!" so, `%postname%` in the URI remains same "this-is-a-great-post" whereas `%title%` in the URI becomes "this-is-a-wordpress-post"
**Note**: `%title%` is similar as `%postname%` tag but the difference is that `%postname%` can only be set once by WordPress whereas `%title%` can be changed by user at multiple times. let's say the title is "This Is A Great Post!" so, it becomes "this-is-a-great-post" in the URI(At the first time, `%postname%` and `%title%` works same) but if you edit and change title let's say "This Is A WordPress Post!" so, `%postname%` in the URI remains same "this-is-a-great-post" whereas `%title%` in the URI becomes "this-is-a-wordpress-post".

### Custom Tags for Taxonomies
Below mentioned tags are provided by the **Permalinks Customizer** for Taxonomies. These can not be used on the Default **WordPress Permalink** Settings Page.
Expand Down
39 changes: 39 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,45 @@

This file contains only old changelog. See readme.txt for newer versions.

= 2.3.1 - Oct 16, 2018 =

* Enhancement
* Flush rewrite rules to prevent permalink cache
* Bug
* Set meta_keys to be protected to stop duplication in Custom Fields

= 2.3.0 - Sept 10, 2018 =

* Enhancement
* Added Support for Gutenberg
* Added Privacy Policy Content on Admin Panel

= 2.2.0 - Aug 10, 2018 =

* Enhancement
* Added Media (Attachment) Support
* Added Regenerate Permalink in Bulk Action for Media (Attachment)
* Added Filter to Exclude the PostType from the Plugin to be worked on
* Added Support of `WP All Import` Plugin
* Removing Permalink Edit Form from Private PostTypes and Taxonomies

* Bug
* Plugin causing 504 gateway error when submitting a post for review
* Prevent Permalink to be created for the private PostTypes like Coupon, Order etc

= 2.1.0 - July 16, 2018 =

* Enhancement
* Generate Post Permalink as soon as Post saved at the very first time
* Prevent to add auto-redirects for plain permalinks
* Regenerate Permalink on Quick Edit Post
* Added filter by which relative permalink can be shown on post edit page

* Bug
* Regenerate Status Issue on Post/Page
* Fixed Permalinks Customizer Version issue on plugin update
* Removed Convert URL Page

= 2.0.1 - July 16, 2018 =

* Bugs
Expand Down
4 changes: 2 additions & 2 deletions permalinks-customizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Permalinks Customizer
* Plugin URI: https://wordpress.org/plugins/permalinks-customizer/
* Description: Set permalinks for default post-type and custom post-type which can be changed from the single post edit page.
* Version: 2.5.2
* Version: 2.7.0
* Author: YAS Global Team
* Author URI: https://www.yasglobal.com/web-design-development/wordpress/permalinks-customizer/
* License: GPLv3
Expand Down Expand Up @@ -67,7 +67,7 @@ private function setup_constants() {
}

if ( ! defined( 'PERMALINKS_CUSTOMIZER_PLUGIN_VERSION' ) ) {
define( 'PERMALINKS_CUSTOMIZER_PLUGIN_VERSION', '2.5.2' );
define( 'PERMALINKS_CUSTOMIZER_PLUGIN_VERSION', '2.7.0' );
}

if ( ! defined( 'PERMALINKS_CUSTOMIZER_PATH' ) ) {
Expand Down
61 changes: 21 additions & 40 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: Link, Permalink, URL, Redirects, Tags
Requires at least: 3.5
Requires PHP: 5.2.4
Tested up to: 5.0
Stable tag: 2.5.2
Stable tag: 2.7.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl.html

Expand Down Expand Up @@ -206,6 +206,26 @@ A. Yes, you can exclude any posttype from the plugin to be worked on. For this j

== Changelog ==

= 2.7.0 - Jul 05, 2019 =

* Enhancement
* Added `%parent_title%` tag
* Added `%all_parents_title%` tag
* [Generate Permalink from code](https://wordpress.org/support/topic/how-to-regenerate-a-specific-post-id-in-my-function-php/)
* Revamp `Tags` page
* Bug
* [Flush Permalinks Cache](https://wordpress.org/support/topic/flush-permalinks-cache/)

= 2.6.0 - Jul 04, 2019 =

* Enhancement
* Fix issue of Polylang `Hide Default` language Setting
* Hide Default Permalink metabox when making changes in content
* Compatible with `url_to_postid()`
* Bug
* PHP Notice of [Undefined variable](https://github.com/yasglobal/permalinks-customizer/issues/26)
* [Taxonomy permalink not working under existing page](https://wordpress.org/support/topic/taxonomy-permalink-not-working-under-existing-page/)

= 2.5.2 - Jan 02, 2019 =

* Enhancement
Expand Down Expand Up @@ -235,45 +255,6 @@ A. Yes, you can exclude any posttype from the plugin to be worked on. For this j
[https://wordpress.org/support/topic/view-post-button-does-not-open-expected-url/](https://wordpress.org/support/topic/view-post-button-does-not-open-expected-url/)
* Removed auto flush rewrite rules to prevent permalink cache

= 2.3.1 - Oct 16, 2018 =

* Enhancement
* Flush rewrite rules to prevent permalink cache
* Bug
* Set meta_keys to be protected to stop duplication in Custom Fields

= 2.3.0 - Sept 10, 2018 =

* Enhancement
* Added Support for Gutenberg
* Added Privacy Policy Content on Admin Panel

= 2.2.0 - Aug 10, 2018 =

* Enhancement
* Added Media (Attachment) Support
* Added Regenerate Permalink in Bulk Action for Media (Attachment)
* Added Filter to Exclude the PostType from the Plugin to be worked on
* Added Support of `WP All Import` Plugin
* Removing Permalink Edit Form from Private PostTypes and Taxonomies

* Bug
* Plugin causing 504 gateway error when submitting a post for review
* Prevent Permalink to be created for the private PostTypes like Coupon, Order etc

= 2.1.0 - July 16, 2018 =

* Enhancement
* Generate Post Permalink as soon as Post saved at the very first time
* Prevent to add auto-redirects for plain permalinks
* Regenerate Permalink on Quick Edit Post
* Added filter by which relative permalink can be shown on post edit page

* Bug
* Regenerate Status Issue on Post/Page
* Fixed Permalinks Customizer Version issue on plugin update
* Removed Convert URL Page

= Earlier versions =

* For the changelog of earlier versions, please refer to the separate changelog.txt file.

0 comments on commit 5e13747

Please sign in to comment.