HEX
Server: LiteSpeed
System: Linux kapuas.iixcp.rumahweb.net 5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64
User: mirz4654 (1666)
PHP: 8.1.33
Disabled: system,exec,escapeshellarg,escapeshellcmd,passthru,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,popen,pclose,dl,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setsid,posix_setuid,posix_setpgid,ini_alter,show_source,define_syslog_variables,symlink,syslog,openlog,openlog,closelog,ocinumcols,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dll,ftp,myshellexec,socket_bind,mail,posix_getwpuid
Upload Files
File: //proc/self/root/home/mirz4654/www/wp-content/themes/nexter/template-parts/blog/blog-layout-1.php
<?php
/**
 * Template for Single Blog
 *
 * @package	Nexter
 * @since	1.0.0
 */

$offset_class='';
?>
<div class="nxt-blog-single-post">
	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
		<?php if ( has_post_thumbnail() && (nexter_get_option('s-display-post-fea-image') == 'on' || empty(nexter_get_option('s-display-post-fea-image')))) {
			get_template_part('template-parts/blog/format', 'image');
			$offset_class='nxt-offset-top';
		} ?>
		<?php if( nexter_get_option('s-display-post-title') == 'on' || empty(nexter_get_option('s-display-post-title')) || nexter_get_option('s-display-post-meta') == 'on' || empty(nexter_get_option('s-display-post-meta')) ){ ?>
		<div class="nxt-single-post-title <?php echo esc_attr($offset_class); ?>">
			<?php 
				if( nexter_get_option('s-display-post-title') == 'on' || empty(nexter_get_option('s-display-post-title')) ){
				get_template_part('template-parts/blog/post', 'title');
				} ?>
			<?php if( nexter_get_option('s-display-post-meta') == 'on' || empty(nexter_get_option('s-display-post-meta')) ){
				get_template_part('template-parts/blog/blog', 'post-meta');
			} ?>
		</div>
		<?php } ?>
		<div class="nxt-single-post-content">
			<?php the_content(); ?>
		</div>
		<?php if (get_the_tags() && (nexter_get_option('s-display-post-tags') == 'on' || empty(nexter_get_option('s-display-post-tags')))){ ?>
		<div class="nxt-tags-share-post">
			<div class="nxt-row">
				<div class="nxt-col">
					<?php get_template_part('template-parts/blog/post', 'tags' ); ?>
				</div>			
			</div>		
		</div>
		<?php } ?>
		<?php if( nexter_get_option('s-display-post-nav') == 'on' || empty(nexter_get_option('s-display-post-nav')) ){
			get_template_part('template-parts/blog/post', 'navigation' ); 
		} ?>
		
		<?php if( nexter_get_option('s-display-author-info') == 'on' || empty(nexter_get_option('s-display-author-info')) ){ ?>
			<div class="nxt-row">
				<div class="nxt-col">
					<?php get_template_part('template-parts/blog/user', 'meta' ); ?>
				</div>
			</div>
		<?php } ?>
		
		<?php 
			if( nexter_get_option('s-display-comment-box') == 'on' || empty(nexter_get_option('s-display-comment-box')) ){
				get_template_part('template-parts/blog/blog', 'comments'); 
			} ?>
	</article>
</div>