HEX
Server: LiteSpeed
System: Linux catuipe.dhs10.info 4.18.0-553.111.1.lve.el8.x86_64 #1 SMP Fri Mar 13 13:42:17 UTC 2026 x86_64
User: paradatacom (1125)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/paradatacom/www/wp-content/themes/izeetak/templates/entry-content-body.php
<?php
/**
 * Entry Content / Body
 *
 * @package izeetak
 * @version 3.6.8
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}
$content_style = izeetak_get_mod( 'blog_content_style', 'style-2' );

if ( is_single() ) {
	echo '<div class="post-content clearfix">';
	
	the_content();

	wp_link_pages( array(
		'before'      => '<p class="page-links">'. esc_html__( 'Pages:', 'izeetak' ),
		'after'       => '</p>',
		'link_before' => '<span>',
		'link_after'  => '</span>'
	) );

	echo '</div>';

} else {
	echo '<div class="post-content post-excerpt clearfix">';
	
	$content_style = izeetak_get_mod( 'blog_content_style', 'style-2' );

	if ( $content_style == 'style-1' && ! is_search() ) {
		the_content();
	} else {
		the_excerpt();
	}

	wp_link_pages( array(
		'before'      => '<p class="page-links">'. esc_html__( 'Pages:', 'izeetak' ),
		'after'       => '</p>',
		'link_before' => '<span>',
		'link_after'  => '</span>'
	) );

	echo '</div>';
} ?>