PluginProbe ʕ •ᴥ•ʔ
Reviews Feed – Add Testimonials and Customer Reviews From Google Reviews, Yelp, TripAdvisor, and More / 2.10.0
Reviews Feed – Add Testimonials and Customer Reviews From Google Reviews, Yelp, TripAdvisor, and More v2.10.0
2.11.0 2.10.0 2.9.0 2.8.0 2.7.0 2.6.7 2.6.8 2.6.5 2.6.4 2.6.3 2.6.2 2.6.0 2.5.5 2.5.4 2.5.3 2.5.2 trunk 1.0 1.0.1 1.0.2 1.0.3 1.1 1.1.1 1.1.2 1.2.0 2.0 2.1.0 2.1.1 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.5.0 2.5.1
reviews-feed / templates / frontend / lite / post-elements / author.php
reviews-feed / templates / frontend / lite / post-elements Last commit date
author.php 4 weeks ago
author.php
28 lines
1 <?php
2
3 /**
4 * Smash Balloon Reviews Feed Author Template
5 * Adds a review author
6 *
7 * @version 1.0 Reviews Feed by Smash Balloon
8 *
9 */
10
11 if (!defined('ABSPATH')) {
12 exit; // Exit if accessed directly
13 }
14 ?>
15 <div class="sb-item-author-date-ctn sb-fs">
16 <div class="sb-item-author-ctn sb-relative">
17 <div class="sb-item-name-date">
18 <?php if ($this->should_show('author', 'name')) : ?>
19 <span class="sb-item-author-name sb-relative" role="heading" aria-level="3"><?php echo sbr_neutralize_shortcodes(esc_html($this->parser->get_reviewer_name($post))); ?></span>
20 <?php endif; ?>
21
22 <?php if ($this->should_show('author', 'date')) : ?>
23 <span class="sb-item-author-date sb-relative"><?php echo esc_html($this->date($post, $this->translations)); ?></span>
24 <?php endif; ?>
25 </div>
26 </div>
27 </div>
28