From a64e01a693dc48229ed55e1f2936dcfc152a78dc Mon Sep 17 00:00:00 2001 From: Anh Tran Date: Tue, 14 Nov 2023 10:14:50 +0700 Subject: [PATCH] Version 3.22.3 --- readme.txt | 19 +++++++++++++++++-- slim-seo.php | 4 ++-- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/readme.txt b/readme.txt index 367d8dd5..d03efd6d 100644 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: elightup, rilwis, hungviet91, barcavn2 Donate link: https://wpslimseo.com/products/ Tags: seo, search engine optimization, schema, sitemap, google, facebook, twitter, meta tags, meta description, open graph, twitter card, xml sitemap Requires at least: 5.9 -Tested up to: 6.3.2 +Tested up to: 6.4.1 Requires PHP: 7.2 -Stable tag: 3.22.2 +Stable tag: 3.22.3 License: GPL v3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -142,12 +142,27 @@ Yes, you can. When you edit a post or a page, there's a "Search Engine Optimizat The sitemap URL is located at `domain.com/sitemap.xml`. += How to remove plugin's data when uninstalling = + +Add the following constant in your `wp-config.php` file: + +`define( 'SLIM_SEO_DELETE_DATA', true );` + == Screenshots == == Upgrade Notice == == Changelog == += 3.22.3 - 2023-11-14 = +- Add support for Sensei LMS, Civi CRM, TranslatePress +- Add `SLIM_SEO_DELETE_DATA` constant to set whether the plugin deletes its data when uninstalling, default `false` +- Use only 3xx status codes for redirection +- Add type-safe check for rel links for terms +- Remove dashboard news +- Prevent error for breadcrumbs on tax page +- Fix duplicated post type archive url in sitemaps + = 3.22.2 - 2023-10-19 = - Do not generate rewrite rules for sitemaps if no post types or no taxonomies - Add post type archive link to sitemap diff --git a/slim-seo.php b/slim-seo.php index 68df930a..ff287a42 100644 --- a/slim-seo.php +++ b/slim-seo.php @@ -5,7 +5,7 @@ * Description: A fast and automated SEO plugin for WordPress. * Author: eLightUp * Author URI: https://elightup.com - * Version: 3.22.2 + * Version: 3.22.3 * Text Domain: slim-seo * Domain Path: /languages * GitHub Plugin URI: elightup/slim-seo @@ -19,7 +19,7 @@ define( 'SLIM_SEO_URL', plugin_dir_url( __FILE__ ) ); define( 'SLIM_SEO_REDIRECTS', 'ss_redirects' ); define( 'SLIM_SEO_DELETE_404_LOGS_ACTION', 'delete_404_logs' ); -define( 'SLIM_SEO_VER', '3.22.2' ); +define( 'SLIM_SEO_VER', '3.22.3' ); define( 'SLIM_SEO_DB_VER', 1 ); require __DIR__ . '/vendor/autoload.php';