HEX
Server: LiteSpeed
System: Linux l24.yourwebhosting.net 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: turkishi (1582)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/wp-content/themes/kidzieo/theme-parts/portfolio-single-style-1.php
<?php
/**
 * Template part for displaying posts
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package WordPress
 * @subpackage Kidzieo
 * @since 1.0
 * @version 1.2
 */
// Class list
$style			= pbmit_get_base_option('portfolio-single-style');
$single_style	= get_post_meta( get_the_ID(), 'pbmit-portfolio-single-view', true );
if( !empty($single_style) ){ $style = $single_style; }
$class_list		= 'pbmit-portfolio-single-style-'.$style;
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( $class_list ); ?>>
	<div class="pbmit-portfolio-single">
		<?php pbmit_get_featured_data( array( 'featured_img_only' => false, 'size' => 'pbmit-img-1200x650' ) ); ?>
		<div  class="pbmit-single-project-details-list">
			<?php pbmit_portfolio_details_list(); ?>
		</div>
		<div class="pbmit-entry-content">
			<?php
			/* translators: %s: Name of current post */
			the_content( sprintf(
				'',
				get_the_title()
			) );
			?>
		</div><!-- .entry-content -->
		<?php
		// Prev Next Post Link
		$cpt_name = pbmit_get_base_option('portfolio-cpt-singular-title');
		$next_post = get_next_post();
		$previous_post = get_previous_post();
		the_post_navigation( array(
			'prev_text' => pbmit_esc_kses( '<span class="pbmit-post-nav-icon"><i class="pbmit-base-icon-angle-left"></i><span class="pbmit-post-nav-head">' . sprintf( esc_attr__('Previous Project', 'kidzieo') , $cpt_name ) . '</span></span><span class="pbmit-post-nav-wrapper">' ) . pbmit_esc_kses( '<span class="pbmit-post-nav nav-title">%title</span> </span>' ),
			'next_text' => pbmit_esc_kses( '<span class="pbmit-post-nav-icon"><span class="pbmit-post-nav-head">' . sprintf( esc_attr__('Next Project', 'kidzieo') , $cpt_name ) . '</span><i class="pbmit-base-icon-angle-left"></i></span><span class="pbmit-post-nav-wrapper">' ) . pbmit_esc_kses( '<span class="pbmit-post-nav nav-title">%title</span> </span>' ),
		) );
		?>
	</div>
</article><!-- #post-## -->
<?php pbmit_related_portfolio(); ?>
<?php pbmit_edit_link(); ?>