HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/kofejob-wp/wp-content/themes/kofejob/page-blog.php
<?php
get_header();
if ( have_posts() )
{ 
	the_post();
	
	if( kofejob_is_elementor() && !is_page_template( 'page-home.php' ))
	{
		the_content();
	}
	else
	{
		if (kofejob_is_realy_woocommerce_page() )
		{
			the_content();
		}
		else
		{
			$actionbBar = kofejob_fl_framework_get_options('action_bar');
			$actionbar_space = '';
			if(isset($actionbBar) && $actionbBar == 1)
			{
				$actionbar_space = 'actionbar_space';
			}
			?>
			<section class="content   post-excerpt post-desc bg-gray-light-color <?php echo esc_attr($actionbar_space); ?>">
				<div class="container">
					<div class="row">
						<div class="col-xl-12 col-xs-12 col-sm-12 col-md-12">
						<?php
							the_content();
						?>
						 
						<?php
						wp_link_pages( array(
						'before'      => '<div class="page_with_pagination"><div class="page-links">','after' => '</div></div>','next_or_number' => 'number','link_before' => '<span class="no">','link_after'  => '</span>') );
						?>
						<div class="clearfix"></div>
						<?php
						comments_template( '', true ); ?>
						</div>
					</div>
				</div>
			</section>	
			<?php
		}
	}
}
?>
<?php get_footer(); ?>