Skip to content

Commit

Permalink
Tagged v3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaydsouza committed May 3, 2022
1 parent 0e1798a commit f510df8
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ __License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)

__Plugin page:__ [Contextual Related Posts home page](https://webberzone.com/plugins/contextual-related-posts/) | [WordPress.org listing](https://wordpress.org/plugins/contextual-related-posts/)

Add related posts to your WordPress site with inbuilt caching. Supports thumbnails, shortcodes, widgets and custom post types!
Related posts for your WordPress site with inbuilt caching. Supports blocks, shortcodes, widgets and custom post types!

## Description

Expand Down
30 changes: 30 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@

This is an archive of older changelog entries. Most recent entries are maintained in readme.txt

= 3.1.1 =

Release post: [https://webberzone.com/blog/contextual-related-posts-v3-1-0/](https://webberzone.com/blog/contextual-related-posts-v3-1-0/)

* Enhancements:
* Don't clear cache when saving settings. The cache can be cleared in the Tools page
* Default thumbnail is now prioritized over the site icon

* Bug fixes:
* Limiting of characters didn't work properly
* Fixed link to Tools menu under Settings. Tools button link is better displayed
* Fixed activation when new blog is created on multisite

= 3.1.0 =

* Features:
* REST API support - you can now fetch the related posts via the REST API. Fetch posts at `/contextual-related-posts/v1/posts/<id>`
* New setting in the metabox to exclude specific terms

* Enhancements/modifications:
* Thumbnail function uses the size instead of exact array of sizes to better select the appropriate thumbnail image size
* Use site icon if no other thumbnail is found
* Use both `post_title` and `post_content` fields for matching even when match content setting is off
* Passing `post_type` and `posts_per_page` arguments will be respected instead of being overridden

* Bug fixes:
* Don't enqueue wp-editor on widgets.php
* [WP_Query stopwords](https://developer.wordpress.org/reference/classes/wp_query/get_search_stopwords/) are stripped from content that is matched
* Manual posts are added after the automatic posts are shuffled

= 3.0.7 =

Release post: [https://webberzone.com/blog/contextual-related-posts-v3-0-0/](https://webberzone.com/blog/contextual-related-posts-v3-0-0/)
Expand Down
6 changes: 3 additions & 3 deletions contextual-related-posts.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* @wordpress-plugin
* Plugin Name: Contextual Related Posts
* Plugin URI: https://webberzone.com/plugins/contextual-related-posts/
* Description: Display a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
* Version: 3.2.3-beta2
* Description: Display related posts on your website or in your feed. Increase reader retention and reduce bounce rates
* Version: 3.2.3
* Author: WebberZone
* Author URI: https://webberzone.com
* License: GPL-2.0+
Expand All @@ -38,7 +38,7 @@
* @var string Contextual Related Posts Version.
*/
if ( ! defined( 'CRP_VERSION' ) ) {
define( 'CRP_VERSION', '3.2.1' );
define( 'CRP_VERSION', '3.2.3' );
}


Expand Down
38 changes: 4 additions & 34 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
Tags: related posts, related, related articles, contextual related posts, similar posts, related posts widget
Contributors: webberzone, Ajay
Donate link: https://ajaydsouza.com/donate/
Stable tag: 3.2.2
Stable tag: 3.2.3
Requires at least: 5.6
Tested up to: 5.9
Requires PHP: 7.1
License: GPLv2 or later

Add related posts to your WordPress site with inbuilt caching. Supports thumbnails, shortcodes, widgets and custom post types!
Related posts for your WordPress site with inbuilt caching. Supports blocks, shortcodes, widgets and custom post types!

== Description ==

Expand Down Expand Up @@ -210,42 +210,12 @@ Release post: [https://webberzone.com/blog/contextual-related-posts-v3-2-0/](htt
* Bug fixes:
* Current post was incorrectly being excluded in the translation functions

= 3.1.1 =

Release post: [https://webberzone.com/blog/contextual-related-posts-v3-1-0/](https://webberzone.com/blog/contextual-related-posts-v3-1-0/)

* Enhancements:
* Don't clear cache when saving settings. The cache can be cleared in the Tools page
* Default thumbnail is now prioritized over the site icon

* Bug fixes:
* Limiting of characters didn't work properly
* Fixed link to Tools menu under Settings. Tools button link is better displayed
* Fixed activation when new blog is created on multisite

= 3.1.0 =

* Features:
* REST API support - you can now fetch the related posts via the REST API. Fetch posts at `/contextual-related-posts/v1/posts/<id>`
* New setting in the metabox to exclude specific terms

* Enhancements/modifications:
* Thumbnail function uses the size instead of exact array of sizes to better select the appropriate thumbnail image size
* Use site icon if no other thumbnail is found
* Use both `post_title` and `post_content` fields for matching even when match content setting is off
* Passing `post_type` and `posts_per_page` arguments will be respected instead of being overridden

* Bug fixes:
* Don't enqueue wp-editor on widgets.php
* [WP_Query stopwords](https://developer.wordpress.org/reference/classes/wp_query/get_search_stopwords/) are stripped from content that is matched
* Manual posts are added after the automatic posts are shuffled

= Earlier versions =

For the changelog of earlier versions, please refer to the separate changelog.txt file or the [releases page on Github](https://github.com/WebberZone/contextual-related-posts/releases).


== Upgrade Notice ==

= 3.2.2 =
New featuers and enhancements. Please read the release post on https://webberzone.com
= 3.2.3 =
Bug fixes. Please read the release post on https://webberzone.com

0 comments on commit f510df8

Please sign in to comment.