HEX
Server: Apache/2
System: Linux ns65.hostinglotus.net 4.18.0-553.16.1.el8_10.x86_64 #1 SMP Thu Aug 8 07:11:46 EDT 2024 x86_64
User: newsnnno (1225)
PHP: 8.2.20
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/newsnnno/public_html/wp-content/themes/walkerpress/template-parts/content.php
<?php
/**
 * Template part for displaying posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package WalkerPress
 */
$current_post_view = get_theme_mod('walkerpress_blog_post_view','post-layout-list');
?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<?php if ( has_post_thumbnail() ) {?>
		<div class="walkerpress-post-thumbnails">
			<?php 
			walkerpress_archive_estimate_reading_time();
			walkerpress_post_thumbnail();
			 ?>
		</div>
	<?php } ?>
		<?php if ( has_post_thumbnail() ) {
			$inner_content_class= 'has-thumbnails';
		}else{
			$inner_content_class= 'has-no-thumbnails';
		}


	 ?>
	<div class="article-inner <?php echo $inner_content_class;?>">
		<header class="entry-header">
			<?php  
			if($current_post_view!='post-layout-full'){
				if(walkerpress_set_to_premium()){
					if(get_theme_mod('category_status','true')){
						walkerpress_custom_category();
					}
				}else{
					walkerpress_custom_category();
				}
			}

			if($current_post_view=='post-layout-full'){
				if(walkerpress_set_to_premium()){
					if(get_theme_mod('category_status','true')){
						walkerpress_custom_category();
					}
				}else{
					walkerpress_custom_category();
				}
			}
			if(walkerpress_set_to_premium()){
				if ( ! has_post_thumbnail() ) {
					if(get_theme_mod('estimate_reading_time_status','true')){
						echo '<span class="estimate-time">-'. walkerpress_estimate_reading_time().'</span>';
					}
				}
			}else{
				if ( ! has_post_thumbnail() ) {
					echo '<span class="estimate-time">-'. walkerpress_estimate_reading_time().'</span>';
				}
			}?>
			<?php if($current_post_view=='post-layout-full') :
				the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
			else :
				the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );
			endif;

			if ( 'post' === get_post_type() ) :
				walkerpress_meta_data();
		    endif;?>
			
		
		</header><!-- .entry-header -->
	<div class="entry-content">
		<?php echo'<div class="walkerpress-excerpt">'. esc_html(walkerpress_excerpt('35')).'</div>';
		

					?>
					<a href="<?php echo the_permalink();?>" class="walkerpress-primary-button"> 
					<?php if(get_theme_mod('walkerpress_excerpt_more')){
							echo esc_html(get_theme_mod('walkerpress_excerpt_more'));
						}else{
							echo __('Read More','walkerpress');
						}?>
					</a>
			
		
		</div>
	</div><!-- .entry-content -->
</article><!-- #post-<?php the_ID(); ?> -->