hello
Server : Apache/2.4.52 (Ubuntu) System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : servadmin ( 1000) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE Directory : /www/docs/www.obusignal.com/www.obusignal.com/wp-content/themes/quill/templates/ |
<?php
/**
* @package Quill
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php $client_name = get_post_meta( get_the_ID(), 'wpcf-client-name', true ); ?>
<?php $outcome = get_post_meta( get_the_ID(), 'wpcf-outcome', true ); ?>
<?php $team = get_post_meta( get_the_ID(), 'wpcf-team', true ); ?>
<div class="case-info col-md-6 wow fadeInLeft">
<?php if ($client_name != '') : ?>
<h4><?php echo __('Client', 'quill'); ?></h4>
<span><?php echo esc_html($client_name); ?></span>
<?php endif; ?>
<?php if ($outcome != '') : ?>
<h4><?php echo __('Outcome', 'quill'); ?></h4>
<span class="case-outcome"><?php echo esc_html($outcome); ?></span>
<?php endif; ?>
<?php if ($team != '') : ?>
<h4><?php echo __('Team involved', 'quill'); ?></h4>
<span class="case-team"><?php echo esc_html($team); ?></span>
<?php endif; ?>
</div>
<div class="entry-content wow fadeInRight col-md-6">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'quill' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
</article><!-- #post-## -->