File "product.php"
Full Path: /home/diablzlo/glucosebalnce.com/wp-content/plugins/seo-by-rank-math/includes/modules/schema/shortcode/product.php
File size: 895 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Shortcode - Product
*
* @package RankMath
* @subpackage RankMath\Schema
*/
defined( 'ABSPATH' ) || exit;
$this->get_title();
$this->get_image();
?>
<div class="rank-math-review-data">
<?php $this->get_description(); ?>
<?php
$this->get_field(
esc_html__( 'Product SKU', 'rank-math' ),
'sku'
);
?>
<?php
$this->get_field(
esc_html__( 'Product Brand', 'rank-math' ),
'brand.name'
);
?>
<?php
$this->get_field(
esc_html__( 'Product Currency', 'rank-math' ),
'offers.priceCurrency'
);
?>
<?php
$this->get_field(
esc_html__( 'Product Price', 'rank-math' ),
'offers.price'
);
?>
<?php
$this->get_field(
esc_html__( 'Price Valid Until', 'rank-math' ),
'offers.priceValidUntil'
);
?>
<?php
$this->get_field(
esc_html__( 'Product In-Stock', 'rank-math' ),
'offers.availability'
);
?>
<?php $this->show_ratings(); ?>
</div>