From fa80c89a012657010a024dc05f7e651504a9057d Mon Sep 17 00:00:00 2001 From: Nguyen Date: Thu, 18 Jan 2024 11:26:04 +0700 Subject: [PATCH] Release new version 3.2.1 = 3.2.1 - 2024/01/18 = * This release has a breaking bug fix that came out of the 3.2.0 major release. * Fix - Call to correct a3_portfolio_title_filter_content_template instead of a3_portfolio_filter_content_template for filter the title. --- a3-portfolio.php | 4 ++-- changelog.txt | 4 ++++ includes/frontend/class-a3-portfolio-template-loader.php | 2 +- readme.txt | 9 ++++++++- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/a3-portfolio.php b/a3-portfolio.php index 082e85d..ca29883 100644 --- a/a3-portfolio.php +++ b/a3-portfolio.php @@ -2,7 +2,7 @@ /* Plugin Name: a3 Portfolio Description: Creates a beautiful fully mobile responsive, fully customizable, Google images style portfolio to showcase your work. -Version: 3.2.0 +Version: 3.2.1 Author: a3rev Software Author URI: https://a3rev.com/ Requires at least: 6.0 @@ -35,7 +35,7 @@ define( 'A3_PORTFOLIO_KEY', 'a3_portfolios' ); define( 'A3_PORTFOLIO_PREFIX', 'a3_portfolio_' ); -define( 'A3_PORTFOLIO_VERSION', '3.2.0' ); +define( 'A3_PORTFOLIO_VERSION', '3.2.1' ); define( 'A3_PORTFOLIO_G_FONTS', true ); if ( version_compare( PHP_VERSION, '5.6.0', '>=' ) ) { diff --git a/changelog.txt b/changelog.txt index 696ef83..c5a489f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,9 @@ == Changelog == += 3.2.1 - 2024/01/18 = +* This release has a breaking bug fix that came out of the 3.2.0 major release. +* Fix - Call to correct a3_portfolio_title_filter_content_template instead of a3_portfolio_filter_content_template for filter the title. + = 3.2.0 - 2024/01/12 = * This feature release adds Stickers for item cards and expander, a new Tags Meta Block and the Gutenberg editor to item posts. * Feature - new Portfolio Tags Meta block for use on Content or Single Portfolio Block Page diff --git a/includes/frontend/class-a3-portfolio-template-loader.php b/includes/frontend/class-a3-portfolio-template-loader.php index 08762cb..c663fc8 100644 --- a/includes/frontend/class-a3-portfolio-template-loader.php +++ b/includes/frontend/class-a3-portfolio-template-loader.php @@ -391,7 +391,7 @@ public function portfolio_category_template( $content = '' ) { } public function a3_portfolio_filter_template() { - add_filter( 'the_title', array( $this, 'a3_portfolio_filter_content_template' ), 1000 ); + add_filter( 'the_title', array( $this, 'a3_portfolio_title_filter_content_template' ), 1000 ); } public function a3_portfolio_title_filter_content_template( $title ) { diff --git a/readme.txt b/readme.txt index 291ba3e..71c5fca 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Contributors: a3rev, nguyencongtuan Tags: a3 Portfolio, Portfolio, Post Portfolio, Showcase, Image Showcase, Image Portfolio, Gallery, Photo Gallery, Image Gallery Requires at least: 6.0 Tested up to: 6.4.2 -Stable tag: 3.2.0 +Stable tag: 3.2.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -167,6 +167,10 @@ Automatic installation is the easiest option as WordPress handles the file trans == Changelog == += 3.2.1 - 2024/01/18 = +* This release has a breaking bug fix that came out of the 3.2.0 major release. +* Fix - Call to correct a3_portfolio_title_filter_content_template instead of a3_portfolio_filter_content_template for filter the title. + = 3.2.0 - 2024/01/12 = * This feature release adds Stickers for item cards and expander, a new Tags Meta Block and the Gutenberg editor to item posts. * Feature - new Portfolio Tags Meta block for use on Content or Single Portfolio Block Page @@ -786,6 +790,9 @@ Automatic installation is the easiest option as WordPress handles the file trans == Upgrade Notice == += 3.2.1 = +This release has a breaking bug fix that came out of the 3.2.0 major release. + = 3.2.0 = This feature release adds Stickers for item cards and expander, a new Tags Meta Block and the Gutenberg editor to item posts.