Skip to content

Commit

Permalink
Version 3.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rilwis committed May 19, 2023
1 parent 34c3d0e commit 2c9b837
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
13 changes: 8 additions & 5 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Tested up to: 6.2.1
Requires PHP: 7.1
Stable tag: 3.20.1
Stable tag: 3.20.2
License: GPL v3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -148,13 +148,16 @@ The sitemap URL is located at `domain.com/sitemap.xml`.

== Changelog ==

= 3.20.2 - 2023-05-19 =
- Add support for WPForms and MailPoet
- Fix wrong text domain.
- Fix bug when Admin Columns plugin removes the meta title column

= 3.20.1 - 2023-04-25 =

Based on the user feedback, we decide to disable user sitemap by default. You can still enable it if needed with the snippet:

```php
add_filter( 'slim_seo_user_sitemap', '__return_true' );
```
`add_filter( 'slim_seo_user_sitemap', '__return_true' );`

You might want to re-save the permalinks to update the rewrite rules.

Expand Down
6 changes: 2 additions & 4 deletions slim-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: A fast and automated SEO plugin for WordPress.
* Author: eLightUp
* Author URI: https://elightup.com
* Version: 3.20.1
* Version: 3.20.2
* Text Domain: slim-seo
* Domain Path: /languages
*/
Expand All @@ -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.1' );
define( 'SLIM_SEO_VER', '3.20.2' );

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

Expand All @@ -30,5 +30,3 @@

// Initialize at priority 5 to be able to disable core sitemaps completely which runs at priority 10.
add_action( 'init', [ $slim_seo, 'init' ], 5 );

load_plugin_textdomain( 'slim-seo', false, basename( __DIR__ ) . '/languages/' );

0 comments on commit 2c9b837

Please sign in to comment.