Skip to content

Commit

Permalink
Version 4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rilwis committed Jan 20, 2025
1 parent 10b87e5 commit 1e3f8e3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
11 changes: 10 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: seo, schema, xml sitemap, redirection, header
Requires at least: 5.9
Tested up to: 6.7.1
Requires PHP: 7.2
Stable tag: 4.2.1
Stable tag: 4.2.2
License: GPL v3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -161,6 +161,15 @@ Add the following constant in your `wp-config.php` file:

== Changelog ==

= 4.2.2 - 2025-01-20 =
- Improve schemas
- Move meta tags to the top of <head> section
- Add current month variable
- Not index comment pages
- Fix wrong taxonomy for non-product page when WooCommerce is active
- Fix compatibility issue with Dokan
- Fix bug with bulk edit

= 4.2.1 - 2024-12-16 =
- Show post type & taxonomy slugs in the Meta Tags tab to avoid confusion if 2 post types/taxonomies have same labels.
- Improve compatibility for WPForo
Expand Down
19 changes: 17 additions & 2 deletions slim-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,25 @@
* Description: A fast and automated SEO plugin for WordPress.
* Author: Slim SEO
* Author URI: https://wpslimseo.com
* Version: 4.2.1
* Version: 4.2.2
* Text Domain: slim-seo
* License: GPL v3
* GitHub Plugin URI: elightup/slim-seo
*
* Copyright (C) 2010-2025 Tran Ngoc Tuan Anh. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

namespace SlimSEO;
Expand All @@ -19,7 +34,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.2.1' );
define( 'SLIM_SEO_VER', '4.2.2' );
define( 'SLIM_SEO_DB_VER', 1 );

require __DIR__ . '/vendor/autoload.php';
Expand Down

0 comments on commit 1e3f8e3

Please sign in to comment.