Skip to content

Commit d3b9019

Browse files
authored
Merge pull request #164 from brainstormforce/release-candidate
Build v1.6.13
2 parents 5c103f7 + f226dc3 commit d3b9019

File tree

7 files changed

+35
-35
lines changed

7 files changed

+35
-35
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
**Donate link:** https://www.paypal.me/BrainstormForce
44
**Tags:** schema markup, structured data, rich snippets, schema.org, schema
55
**Requires at least:** 3.7
6-
**Tested up to:** 6.6
7-
**Stable tag:** 1.6.12
6+
**Tested up to:** 6.7
7+
**Stable tag:** 1.6.13
88
**License:** GPLv2 or later
99
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
1010
Boost CTR. Improve SEO & Rankings. Supports most of the content type. Works perfectly with Google, Bing, Yahoo & Facebook.
@@ -80,6 +80,10 @@ Review, Event, People, Product, Recipe, Software Application, Video, Articles et
8080

8181
## Changelog ##
8282

83+
### 1.6.13 ###
84+
- Improvement: Compatibility with WordPress 6.7.
85+
- Improvement: Updated the video uploadDate field to use the d-m-y format.
86+
8387
### 1.6.12 ###
8488
- Improvement: Added Product Image field in Review Schema.
8589
- Improvement: Updated plugin metadata tags to improve search optimization.

functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ function display_rich_snippet( $content ) {
881881
try {
882882
// Create a DateTime object from the $video_date string.
883883
$datetime = new DateTime( $video_date, new DateTimeZone( $timezone ) ); // Set the timezone to the server's timezone.
884-
$uploadDate = $datetime->format( 'Y-m-d\TH:i:sP' ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase
884+
$uploadDate = $datetime->format( 'd-m-Y\TH:i:sP' ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase
885885
} catch ( Exception $e ) {
886886
// Translators: %s is the error message from the exception.
887887
echo esc_html( sprintf( __( 'Error creating DateTime object: %s', 'all-in-one-schemaorg-rich-snippets' ), esc_html( $e->getMessage() ) ) );

index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Author: Brainstorm Force
66
* Author URI: https://www.brainstormforce.com
77
* Description: Welcome to the Schema - All In One Schema Rich Snippets! You can now easily add schema markup on various * pages and posts of your website. Implement schema types such as Review, Events, Recipes, Article, Products, Services * *etc.
8-
* Version: 1.6.12
8+
* Version: 1.6.13
99
* Text Domain: rich-snippets
1010
* License: GPL2
1111
*
@@ -68,7 +68,7 @@ public function define_constants() {
6868
define( 'AIOSRS_PRO_BASE', plugin_basename( AIOSRS_PRO_FILE ) );
6969
define( 'AIOSRS_PRO_DIR', plugin_dir_path( AIOSRS_PRO_FILE ) );
7070
define( 'AIOSRS_PRO_URI', plugins_url( '/', AIOSRS_PRO_FILE ) );
71-
define( 'AIOSRS_PRO_VER', '1.6.12' );
71+
define( 'AIOSRS_PRO_VER', '1.6.13' );
7272
}
7373

7474
/**

languages/all-in-one-schemaorg-rich-snippets.pot

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# This file is distributed under the GPL2.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Schema - All In One Schema Rich Snippets 1.6.12\n"
5+
"Project-Id-Version: Schema - All In One Schema Rich Snippets 1.6.13\n"
66
"Report-Msgid-Bugs-To: "
77
"https://wordpress.org/support/plugin/all-in-one-schemaorg-rich-snippets\n"
8-
"POT-Creation-Date: 2024-10-21 05:48:14+00:00\n"
8+
"POT-Creation-Date: 2024-11-19 04:26:41+00:00\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=utf-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
@@ -1484,14 +1484,6 @@ msgstr ""
14841484
msgid "Provider telephone number"
14851485
msgstr ""
14861486

1487-
#: vendor/wp-cli/wp-cli/php/utils-wp.php:247
1488-
msgid "Inactive Widgets"
1489-
msgstr ""
1490-
1491-
#: vendor/wp-cli/wp-cli/php/utils-wp.php:250
1492-
msgid "Drag widgets here to remove them from the sidebar but keep their settings."
1493-
msgstr ""
1494-
14951487
#. Plugin Name of the plugin/theme
14961488
msgid "Schema - All In One Schema Rich Snippets"
14971489
msgstr ""

package-lock.json

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "all-in-one-schemaorg-rich-snippets",
3-
"version": "1.6.12",
3+
"version": "1.6.13",
44
"main": "Gruntfile.js",
55
"author": "Brainstorm Force",
66
"devDependencies": {

readme.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: brainstormforce
33
Donate link: https://www.paypal.me/BrainstormForce
44
Tags: schema markup, structured data, rich snippets, schema.org, schema
55
Requires at least: 3.7
6-
Tested up to: 6.6
7-
Stable tag: 1.6.12
6+
Tested up to: 6.7
7+
Stable tag: 1.6.13
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010
Boost CTR. Improve SEO & Rankings. Supports most of the content type. Works perfectly with Google, Bing, Yahoo & Facebook.
@@ -80,6 +80,10 @@ Review, Event, People, Product, Recipe, Software Application, Video, Articles et
8080

8181
== Changelog ==
8282

83+
= 1.6.13 =
84+
- Improvement: Compatibility with WordPress 6.7.
85+
- Improvement: Updated the video uploadDate field to use the d-m-y format.
86+
8387
= 1.6.12 =
8488
- Improvement: Added Product Image field in Review Schema.
8589
- Improvement: Updated plugin metadata tags to improve search optimization.

0 commit comments

Comments
 (0)