File: /home/clinicamaciel/www/wp-content/plugins/trx_addons/cv/templates/cv.testimonials.tpl.php
<?php
/**
* CV Card Templates: Testimonials
*
* @package WordPress
* @subpackage ThemeREX Addons
* @since v1.1
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
die( '-1' );
}
$trx_addons_cv_ajax_loader = trx_addons_is_on(trx_addons_get_option('cv_ajax_loader')) && !is_customize_preview();
?>
<div class="trx_addons_cv_section trx_addons_cv_section_testimonials<?php if ($trx_addons_cv_ajax_loader) echo ' trx_addons_cv_section_ajax'; ?>" data-section="<?php echo esc_attr(trx_addons_cpt_param('testimonials', 'post_type_slug')); ?>">
<h5 class="trx_addons_cv_section_title" <?php if (trx_addons_get_value_gp('section')==trx_addons_cpt_param('testimonials', 'post_type_slug')) echo ' data-active="true"'; ?>><?php echo ($trx_addons_cv_section_title=trx_addons_get_option('cv_testimonials_title'))!='' ? esc_html($trx_addons_cv_section_title) : esc_html__('Testimonials', 'trx_addons'); ?></h5>
<div class="trx_addons_cv_section_content">
<?php
$content = $content_start = $content_end = '';
$section_content = true;
$cv_content_mask = '%%CONTENT%%';
if (($trx_addons_cv_section_page_id = trx_addons_get_option('cv_testimonials_page')) > 0) {
$trx_addons_cv_sectione_page = get_post($trx_addons_cv_section_page_id);
if ($trx_addons_cv_sectione_page instanceof WP_Post) {
global $post;
$post = $trx_addons_cv_sectione_page;
setup_postdata($post);
if (($content = apply_filters('the_content', get_the_content())) != '') {
if (strpos($content, $cv_content_mask)!==false) {
$content = explode($cv_content_mask, $content);
$content_start = $content[0];
$content_end = !empty($content[1]) ? $content[1] : '';
} else
$section_content = false;
}
}
}
// If need content
if (!empty($content)) {
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'trx_addons_cv_testimonials_page itemscope'); ?> itemscope itemtype="http://schema.org/Article">
<?php
if (has_post_thumbnail()) {
?>
<div class="trx_addons_cv_single_thumb">
<?php the_post_thumbnail( trx_addons_get_thumb_size('full'), array('alt' => get_the_title()) ); ?>
</div>
<?php
}
?>
<div class="trx_addons_cv_single_header entry-header">
<h1 class="trx_addons_cv_single_title entry-title" itemprop="headline"><?php the_title(); ?></h1>
</div><!-- .entry-header -->
<div class="trx_addons_cv_single_content entry-content" itemprop="articleBody">
<?php
trx_addons_show_layout($content_start);
}
if ($section_content) {
trx_addons_cv_testimonials_show_posts(trx_addons_get_value_gp('section')==trx_addons_cpt_param('testimonials', 'post_type_slug') ? trx_addons_get_current_page() : 1);
}
if (!empty($content)) {
trx_addons_show_layout($content_end);
wp_link_pages( array(
'before' => '<div class="trx_addons_cv_single_page_links"><span class="trx_addons_cv_single_page_links_title">' . esc_html__( 'Pages:', 'trx_addons' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . esc_html__( 'Page', 'trx_addons' ) . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
) );
?>
</div><!-- .entry-content -->
</article><!-- .trx_addons_cv_single -->
<?php
}
?>
</div>
</div>