Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
perpending
/
wp-content
/
plugins
/
seo-by-rank-math-pro
/
includes
/
updates
:
update-2.1.0.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php //phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase -- This filename format is intentionally used to match the plugin version. /** * The Updates routine for version 2.1.0 * * @since 2.1.0 * @package RankMathPro * @subpackage RankMathPro\Updates * @author Rank Math <support@rankmath.com> */ defined( 'ABSPATH' ) || exit; /** * This code is needed to opening hours data. */ function rank_math_pro_2_1_0_update_opening_hours() { $locations = get_posts( [ 'post_type' => 'rank_math_locations', 'numberposts' => -1, 'fields' => 'ids', ] ); if ( empty( $locations ) ) { return; } foreach ( $locations as $location ) { $schemas = RankMath\Schema\DB::get_schemas( $location ); foreach ( $schemas as $meta_id => $schema ) { if ( empty( $schema['openingHoursSpecification'] ) ) { continue; } foreach ( $schema['openingHoursSpecification'] as $key => $opening_hour ) { $opening_hour['dayOfWeek'] = array_map( 'ucfirst', $opening_hour['dayOfWeek'] ); $schema['openingHoursSpecification'][ $key ] = $opening_hour; } $meta_key = 'rank_math_schema_' . $schema['@type']; $db_id = absint( str_replace( 'schema-', '', $meta_id ) ); update_metadata_by_mid( 'post', $db_id, $schema, $meta_key ); } } } rank_math_pro_2_1_0_update_opening_hours();