Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build v1.6.13 #164

Merged
merged 4 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**Tags:** schema markup, structured data, rich snippets, schema.org, schema
**Requires at least:** 3.7
**Tested up to:** 6.6
sushmak02 marked this conversation as resolved.
Show resolved Hide resolved
**Stable tag:** 1.6.12
**Stable tag:** 1.6.13
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
Boost CTR. Improve SEO & Rankings. Supports most of the content type. Works perfectly with Google, Bing, Yahoo & Facebook.
Expand Down Expand Up @@ -80,6 +80,10 @@ Review, Event, People, Product, Recipe, Software Application, Video, Articles et

## Changelog ##

### 1.6.13 ###
- Improvement: Compatibility with WordPress 6.7.
- Improvement: Updated the video uploadDate field to use the d-m-y format.

### 1.6.12 ###
- Improvement: Added Product Image field in Review Schema.
- Improvement: Updated plugin metadata tags to improve search optimization.
Expand Down
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ function display_rich_snippet( $content ) {
try {
// Create a DateTime object from the $video_date string.
$datetime = new DateTime( $video_date, new DateTimeZone( $timezone ) ); // Set the timezone to the server's timezone.
$uploadDate = $datetime->format( 'Y-m-d\TH:i:sP' ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase
$uploadDate = $datetime->format( 'd-m-Y\TH:i:sP' ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase
} catch ( Exception $e ) {
// Translators: %s is the error message from the exception.
echo esc_html( sprintf( __( 'Error creating DateTime object: %s', 'all-in-one-schemaorg-rich-snippets' ), esc_html( $e->getMessage() ) ) );
Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Author: Brainstorm Force
* Author URI: https://www.brainstormforce.com
* 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.
* Version: 1.6.12
* Version: 1.6.13
* Text Domain: rich-snippets
* License: GPL2
*
Expand Down Expand Up @@ -68,7 +68,7 @@ public function define_constants() {
define( 'AIOSRS_PRO_BASE', plugin_basename( AIOSRS_PRO_FILE ) );
define( 'AIOSRS_PRO_DIR', plugin_dir_path( AIOSRS_PRO_FILE ) );
define( 'AIOSRS_PRO_URI', plugins_url( '/', AIOSRS_PRO_FILE ) );
define( 'AIOSRS_PRO_VER', '1.6.12' );
define( 'AIOSRS_PRO_VER', '1.6.13' );
}

/**
Expand Down
12 changes: 2 additions & 10 deletions languages/all-in-one-schemaorg-rich-snippets.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# This file is distributed under the GPL2.
msgid ""
msgstr ""
"Project-Id-Version: Schema - All In One Schema Rich Snippets 1.6.12\n"
"Project-Id-Version: Schema - All In One Schema Rich Snippets 1.6.13\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/all-in-one-schemaorg-rich-snippets\n"
"POT-Creation-Date: 2024-10-21 05:48:14+00:00\n"
"POT-Creation-Date: 2024-11-19 04:26:41+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down Expand Up @@ -1484,14 +1484,6 @@ msgstr ""
msgid "Provider telephone number"
msgstr ""

#: vendor/wp-cli/wp-cli/php/utils-wp.php:247
msgid "Inactive Widgets"
msgstr ""

#: vendor/wp-cli/wp-cli/php/utils-wp.php:250
msgid "Drag widgets here to remove them from the sidebar but keep their settings."
msgstr ""

#. Plugin Name of the plugin/theme
msgid "Schema - All In One Schema Rich Snippets"
msgstr ""
Expand Down
34 changes: 17 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "all-in-one-schemaorg-rich-snippets",
"version": "1.6.12",
"version": "1.6.13",
"main": "Gruntfile.js",
"author": "Brainstorm Force",
"devDependencies": {
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/BrainstormForce
Tags: schema markup, structured data, rich snippets, schema.org, schema
Requires at least: 3.7
Tested up to: 6.6
sushmak02 marked this conversation as resolved.
Show resolved Hide resolved
Stable tag: 1.6.12
Stable tag: 1.6.13
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Boost CTR. Improve SEO & Rankings. Supports most of the content type. Works perfectly with Google, Bing, Yahoo & Facebook.
Expand Down Expand Up @@ -80,6 +80,10 @@ Review, Event, People, Product, Recipe, Software Application, Video, Articles et

== Changelog ==

= 1.6.13 =
- Improvement: Compatibility with WordPress 6.7.
- Improvement: Updated the video uploadDate field to use the d-m-y format.

= 1.6.12 =
- Improvement: Added Product Image field in Review Schema.
- Improvement: Updated plugin metadata tags to improve search optimization.
Expand Down
Loading