File: /home/paradatacom/public_html/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>';
} ?>