HEX
Server: nginx/1.26.1
System: Linux 850a3e23ecee 5.15.0-122-generic #132-Ubuntu SMP Thu Aug 29 13:45:52 UTC 2024 x86_64
User: (1000)
PHP: 8.2.27
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/themes/flatsome/template-parts/portfolio/portfolio-summary-full.php
<?php
/**
 * Portfolio full summary.
 *
 * @package          Flatsome\Templates
 * @flatsome-version 3.20.0
 */

$tooltip = get_theme_mod( 'social_icons_tooltip', 1 ) ? 'true' : 'false';
?>
<div class="row">
	<?php if ( ! get_theme_mod( 'portfolio_title' ) ) { ?>
		<div class="large-4 col col-divided pb-0">

			<div class="featured_item_cats breadcrumbs pt-0">
				<?php echo get_the_term_list( get_the_ID(), 'featured_item_category', '', '<span class="divider">|</span>', '' ); ?>
			</div>
			<h1 class="entry-title is-xlarge uppercase"><?php the_title(); ?></h1>
			<?php if ( get_theme_mod( 'portfolio_share', 1 ) ) : ?>
				<div class="portfolio-share is-small">
					<?php echo flatsome_apply_shortcode( 'share', array( 'style' => 'small', 'tooltip' => $tooltip ) ); ?>
				</div>
			<?php endif; ?>
		</div>
	<?php } ?>
	<div class="col col-fit pb-0">
		<?php the_excerpt(); ?>

		<?php if ( get_the_term_list( get_the_ID(), 'featured_item_tag' ) ) { ?>
			<div class="item-tags is-small uppercase bt pb-half pt-half">
				<strong><?php esc_html_e( 'Tags', 'flatsome' ); ?>:</strong>
				<?php echo strip_tags( get_the_term_list( get_the_ID(), 'featured_item_tag', '', ' / ', '' ) ); ?>
			</div>
		<?php } ?>
		<?php if ( get_theme_mod( 'portfolio_title' ) == 'featured' ) { ?>
			<div class="portfolio-share">
				<?php echo flatsome_apply_shortcode( 'share', array( 'tooltip' => $tooltip ) ); ?>
			</div>
		<?php } ?>
	</div>
</div>