| Server IP : 104.26.4.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/buzzbitesv3/public_html/wp-content/themes/bite/skins/default/templates/ |
Upload File : |
<?php
/**
* The default template to display the content of the single post or attachment
*
* @package BITE
* @since BITE 1.0
*/
?>
<article id="post-<?php the_ID(); ?>"
<?php
post_class( 'post_item_single'
. ' post_type_' . esc_attr( get_post_type() )
. ' post_format_' . esc_attr( str_replace( 'post-format-', '', get_post_format() ) )
);
bite_add_seo_itemprops();
?>
>
<?php
do_action( 'bite_action_before_post_data' );
bite_add_seo_snippets();
do_action( 'bite_action_after_post_data' );
do_action( 'bite_action_before_post_content' );
// Post content
?>
<div class="post_content post_content_single entry-content"<?php
if ( bite_is_on( bite_get_theme_option( 'seo_snippets' ) ) ) {
?> itemprop="mainEntityOfPage"<?php
}
?>>
<?php
the_content();
?>
</div>
<?php
do_action( 'bite_action_after_post_content' );
// Post footer: Tags, likes, share, author, prev/next links and comments
do_action( 'bite_action_before_post_footer' );
?>
<div class="post_footer post_footer_single entry-footer">
<?php
bite_show_post_pagination();
if ( bite_is_single() && ! is_attachment() ) {
bite_show_post_footer();
}
?>
</div>
<?php
do_action( 'bite_action_after_post_footer' );
?>
</article>