Skip to content

Commit

Permalink
Version 3.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rilwis committed May 28, 2024
1 parent aea0bdd commit 6760446
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,14 @@ The following meta tags are auto-generated and optimized for the best SEO scores
- [Meta robots tag](https://wpslimseo.com/docs/meta-robots-tag/): decide which pages are indexed and which ones not.
- [Facebook Open Graph Tags](https://wpslimseo.com/docs/facebook-open-graph-tags/): share your posts on Facebook beautifully.
- [Twitter Card Tags](https://wpslimseo.com/docs/twitter-card-tags/): share your posts on Twitter beautifully.
- LinkedIn meta tags

### 2. [XML Sitemap](https://wpslimseo.com/docs/xml-sitemap/)

Slim SEO automatically generates XML sitemap (at `domain.com/sitemap.xml`) to submit to search engines. With XML sitemaps, your website are indexed fast and completely.

Besides the normal XML sitemap, Slim SEO also includes sitemaps for images and Google news.

### 3. [Breadcrumbs](https://wpslimseo.com/docs/breadcrumbs/)

The plugin allows you to output a breadcrumb trail on your website easily. It automatically fetches the information from the current post and output a hierarchy for you. You can also style the breadcrumbs to match your theme style.
Expand Down
13 changes: 12 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: seo, redirection, schema, xml sitemap, header
Requires at least: 5.9
Tested up to: 6.5.3
Requires PHP: 7.2
Stable tag: 3.24.0
Stable tag: 3.25.0
License: GPL v3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -40,11 +40,14 @@ The following meta tags are auto-generated and optimized for the best SEO scores
- [Meta robots tag](https://docs.wpslimseo.com/slim-seo/meta-robots-tag/): decide which pages are indexed and which ones not.
- [Facebook Open Graph Tags](https://docs.wpslimseo.com/slim-seo/facebook-open-graph-tags/): share your posts on Facebook beautifully.
- [Twitter Card Tags](https://docs.wpslimseo.com/slim-seo/twitter-card-tags/): share your posts on Twitter beautifully.
- LinkedIn meta tags

#### 2. [XML Sitemap](https://docs.wpslimseo.com/slim-seo/xml-sitemap/)

Slim SEO automatically generates XML sitemap (at `domain.com/sitemap.xml`) to submit to search engines. With XML sitemaps, your website are indexed fast and completely.

Besides the normal XML sitemap, Slim SEO also includes sitemaps for images and Google news.

#### 3. [Breadcrumbs](https://docs.wpslimseo.com/slim-seo/breadcrumbs/)

The plugin allows you to output a breadcrumb trail on your website easily. It automatically fetches the information from the current post and output a hierarchy for you. You can also style the breadcrumbs to match your theme style.
Expand Down Expand Up @@ -154,6 +157,14 @@ Add the following constant in your `wp-config.php` file:

== Changelog ==

= 3.25.0 - 2024-05-28 =
- Add sitemap for Google news. The news sitemap is automatically added to the `sitemap-post-type-post.xml` sitemap. You do not have to change anything. Simply submit your sitemap URL (either `https://example.com/sitemap.xml` or `https://example.com/sitemap-post-type-post.xml` to Google News).
- Auto get 1st image in the content for the schema and Open Graph if there's no featured image.
- Fix: get_the_author() returns null for LinkedIn
- Fix: PHP warning for image alt
- Fix SEO settings not available for Elementor landing page
- Fix compatibility with Contact Form 7

= 3.24.0 - 2024-05-10 =
- Support getting SEO settings for posts and terms via REST API
- Optimize performance for sitemap
Expand Down
4 changes: 2 additions & 2 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.24.0
* Version: 3.25.0
* Text Domain: slim-seo
* Domain Path: /languages
* GitHub Plugin URI: elightup/slim-seo
Expand All @@ -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.24.0' );
define( 'SLIM_SEO_VER', '3.25.0' );
define( 'SLIM_SEO_DB_VER', 1 );

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

0 comments on commit 6760446

Please sign in to comment.