Commit realizado el 12:13:52 08-04-2024

This commit is contained in:
Pagina Web Monito
2024-04-08 12:13:55 -04:00
commit 0c33094de9
7815 changed files with 1365694 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
<?php
/**
* Shortcode - course
*
* @package RankMath
* @subpackage RankMath\Schema
*/
defined( 'ABSPATH' ) || exit;
$shortcode->get_description( $schema['claimReviewed'] );
$shortcode->get_image();
?>
<div class="rank-math-review-data">
<?php
$shortcode->get_field(
esc_html__( 'URL', 'rank-math-pro' ),
'url'
);
?>
<?php
$shortcode->get_field(
esc_html__( 'Author Name', 'rank-math-pro' ),
'itemReviewed.author.name'
);
?>
<?php
$shortcode->get_field(
esc_html__( 'Published Date', 'rank-math-pro' ),
'itemReviewed.datePublished'
);
?>
<?php
$shortcode->get_field(
esc_html__( 'Appearance Headline', 'rank-math-pro' ),
'itemReviewed.appearance.headline'
);
?>
<?php
$shortcode->get_field(
esc_html__( 'Appearance URL', 'rank-math-pro' ),
'itemReviewed.appearance.url'
);
?>
<?php
$shortcode->get_field(
esc_html__( 'Appearance Author', 'rank-math-pro' ),
'itemReviewed.appearance.author.name'
);
?>
<?php
$shortcode->get_field(
esc_html__( 'Appearance Published Date', 'rank-math-pro' ),
'itemReviewed.appearance.datePublished'
);
?>
<?php
$shortcode->get_field(
esc_html__( 'Alternate Name', 'rank-math-pro' ),
'reviewRating.alternateName'
);
?>
<?php $shortcode->show_ratings( 'reviewRating.ratingValue' ); ?>
</div>