From 2744fcd4ad30103b95e813111cee152bafaba8b9 Mon Sep 17 00:00:00 2001 From: Anh Tran Date: Tue, 5 Nov 2024 15:06:20 +0700 Subject: [PATCH] Version 4.0.4 --- README.md | 12 +++--------- readme.txt | 9 +++++++-- slim-seo.php | 4 ++-- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index e874cf33..9d7d4933 100644 --- a/README.md +++ b/README.md @@ -46,13 +46,13 @@ Schema is a way that describes structured data for search engines. Based on the Slim SEO automatically adds structured data to the website via JSON-LD which makes your website more SEO-friendly. Not only schemas are created by the plugin, there are also meaningful connections between them. For example, an article (single post) is the main entity of the current webpage. Slim SEO does that all without any configuration. -#### 5. [Redirection](https://docs.wpslimseo.com/slim-seo/redirection/) +### 5. [Redirection](https://docs.wpslimseo.com/slim-seo/redirection/) - Setting up redirection rules easily - Auto redirect non-www to www and vice versa - 404 link monitoring -#### 6. And many more +### 6. And many more - [Inserting Google Analytics, Facebook pixel or any code to the header or footer](https://docs.wpslimseo.com/slim-seo/header-footer-code/) of the site - Auto prevent scraping content from [RSS feed](https://docs.wpslimseo.com/slim-seo/rss-feed/) @@ -60,7 +60,7 @@ Slim SEO automatically adds structured data to the website via JSON-LD which mak - [Import and export](https://docs.wpslimseo.com/slim-seo/import-export/) data or migrate data from popular SEO plugins - Auto redirect if post slug changed -### Premium plugins +## Premium plugins - [Slim SEO Schema](https://wpslimseo.com/products/slim-seo-schema/) - An advanced, powerful and flexible plugin to add schemas to WordPress. - [Slim SEO Link Manager](https://wpslimseo.com/products/slim-seo-link-manager/) - Build internal link easier in WordPress with real-time reports. @@ -123,12 +123,6 @@ If your homepage is a static page, then it's treated like a normal page. The met If your homepage shows latest posts, then it's already done automatically by the plugin. -**Can I change the meta tags manually?** - -It's not available at the moment. Our purpose is provide a configuration-free SEO plugin for WordPress, so you don't get lost in the options. We might improve the plugin later to add essential options. But for now, it's zero configuration. - -If you need custom settings, we recommend using Yoast SEO plugin. - **Where is my XML sitemap?** The sitemap URL is located at `domain.com/sitemap.xml`. diff --git a/readme.txt b/readme.txt index bff13866..ef345085 100644 --- a/readme.txt +++ b/readme.txt @@ -1,11 +1,11 @@ === Slim SEO - Fast & Automated WordPress SEO Plugin === Contributors: elightup, rilwis, hungviet91, barcavn2 Donate link: https://wpslimseo.com/products/ -Tags: seo, redirection, schema, xml sitemap, header +Tags: seo, schema, xml sitemap, redirection, header Requires at least: 5.9 Tested up to: 6.6.2 Requires PHP: 7.2 -Stable tag: 4.0.3 +Stable tag: 4.0.4 License: GPL v3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -159,6 +159,11 @@ Add the following constant in your `wp-config.php` file: == Changelog == += 4.0.4 - 2024-11-05 = +- Improve migration from other SEO plugins: migrate dynamic variables instead of their values +- Add filter `slim_seo_twitter_card_type` for twitter card type +- Fix quick/bulk edit not working + = 4.0.2 - 2024-10-17 = - Fix Divi and WooCommerce compatibility - Fix empty Meta Tags tab on WordPress < 6.6 diff --git a/slim-seo.php b/slim-seo.php index 751af831..f20ed789 100644 --- a/slim-seo.php +++ b/slim-seo.php @@ -5,7 +5,7 @@ * Description: A fast and automated SEO plugin for WordPress. * Author: Slim SEO * Author URI: https://wpslimseo.com - * Version: 4.0.3 + * Version: 4.0.4 * Text Domain: slim-seo * License: GPL v3 * 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', '4.0.3' ); +define( 'SLIM_SEO_VER', '4.0.4' ); define( 'SLIM_SEO_DB_VER', 1 ); require __DIR__ . '/vendor/autoload.php';