You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
505 B
PHP
34 lines
505 B
PHP
<?php
|
|
/**
|
|
* Shortcode - Movie
|
|
*
|
|
* @package RankMath
|
|
* @subpackage RankMath\Schema
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
$shortcode->get_title();
|
|
$shortcode->get_image();
|
|
|
|
?>
|
|
<div class="rank-math-review-data">
|
|
|
|
<?php
|
|
$shortcode->get_field(
|
|
esc_html__( 'Director', 'rank-math-pro' ),
|
|
'director'
|
|
);
|
|
?>
|
|
|
|
<?php
|
|
$shortcode->get_field(
|
|
esc_html__( 'Date Created', 'rank-math-pro' ),
|
|
'dateCreated',
|
|
true
|
|
);
|
|
?>
|
|
|
|
<?php $shortcode->show_ratings(); ?>
|
|
</div>
|