From 84359d77c90c009d7f0ab390e75c5de6ab896cfd Mon Sep 17 00:00:00 2001 From: Anh Tran Date: Mon, 5 Jun 2023 14:42:31 +0700 Subject: [PATCH] Version 3.21.0 --- readme.txt | 24 +++++++++++++++++++++--- slim-seo.php | 4 ++-- 2 files changed, 23 insertions(+), 5 deletions(-) diff --git a/readme.txt b/readme.txt index 6eb28fe2..9c724556 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.7 -Tested up to: 6.2.1 +Tested up to: 6.2.2 Requires PHP: 7.1 -Stable tag: 3.20.2 +Stable tag: 3.21.0 License: GPL v3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -148,6 +148,23 @@ The sitemap URL is located at `domain.com/sitemap.xml`. == Changelog == += 3.21.0 - 2023-06-05 = + +**Highlights** + +Add settings for custom post types to give you options to: + +- Not include a post type in the search results. This option will apply the robots tag "noindex" to all posts of the post type and exclude the post type from the sitemap. +- Change the meta tags (title, description, Facebook & Twitter images) for the post type archive page. + +Other changes: + +- Add "Page %s" to the title for paginated pages with custom title +- Bricks integration: ignore shortcodes inside Bricks elements when rendering the meta description +- Add `slim_seo_meta_description_manual` filter to decide whether the meta description is manually set +- Fix conflict with `core/query` block +- Fix redirection "To URL" missing trailing slash + = 3.20.2 - 2023-05-19 = - Add support for WPForms and MailPoet - Fix wrong text domain. @@ -161,7 +178,8 @@ Based on the user feedback, we decide to disable user sitemap by default. You ca You might want to re-save the permalinks to update the rewrite rules. -Other fixes: +Other changes: + - Improve the Bricks integration to work with pages that use templates = 3.20.0 - 2023-04-20 = diff --git a/slim-seo.php b/slim-seo.php index 46ebb7a1..816613f6 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.20.2 + * Version: 3.21.0 * Text Domain: slim-seo * Domain Path: /languages */ @@ -18,7 +18,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.20.2' ); +define( 'SLIM_SEO_VER', '3.21.0' ); define( 'SLIM_SEO_DB_VER', 1 ); require __DIR__ . '/vendor/autoload.php';