HEX
Server: Apache
System: Linux web2213.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: clinicamaciel (596848)
PHP: 7.3.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,eval,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/clinicamaciel/www/wp-content/plugins/trx_addons/cv/templates/cv.certificates.style-1.tpl.php
<?php
/**
 * CV Card Templates: Single Certificate Slide
 *
 * @package WordPress
 * @subpackage ThemeREX Addons
 * @since v1.1
 */

// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
	die( '-1' );
}

$trx_addons_cv_args = get_query_var('trx_addons_args_cv_certificates');

$trx_addons_cv_meta = get_post_meta(get_the_ID(), 'trx_addons_options', true);

if ($trx_addons_cv_args['slider']) {
	?><div class="swiper-slide"><?php
} else if ($trx_addons_cv_args['columns'] > 1) {
	?><div class="<?php echo esc_attr(trx_addons_get_column_class(1, $trx_addons_cv_args['columns'])); ?>"><?php
}
?>
	<div class="trx_addons_cv_certificates_item">
		<h6 class="trx_addons_cv_certificates_item_title"><a href="<?php echo esc_url(get_permalink()); ?>"><?php the_title(); ?></a></h6>
		<div class="trx_addons_cv_certificates_item_subtitle"><?php echo esc_html($trx_addons_cv_meta['subtitle']);?></div>
		<?php if (has_post_thumbnail()) { ?>
		<div class="trx_addons_cv_certificates_item_thumb trx_addons_hover trx_addons_hover_style_plain">
			<?php the_post_thumbnail( trx_addons_get_thumb_size('portrait'), array('alt' => get_the_title()) ); ?>
			<div class="trx_addons_hover_mask"></div>
			<div class="trx_addons_hover_content">
				<!-- <h6 class="trx_addons_hover_title"></h6> -->
				<?php if (($trx_addons_cv_excerpt = get_the_excerpt()) != '') { ?>
				<div class="trx_addons_hover_text"><?php echo esc_html($trx_addons_cv_excerpt); ?></div>
				<?php } ?>
				<a href="<?php echo esc_url(get_permalink()); ?>" class="trx_addons_hover_link"><?php esc_html_e('Read More', 'trx_addons'); ?></a>
			</div>
		</div>
		<?php } ?>
	</div>
<?php
if ($trx_addons_cv_args['slider'] || $trx_addons_cv_args['columns'] > 1) {
	?></div><?php
}
?>