HEX
Server: LiteSpeed
System: Linux s1.hostssdserver.com 4.18.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: dreamlan (1220)
PHP: 8.3.32
Disabled: exec,system,passthru,shell_exec,proc_open,popen,apache_child_terminate
Upload Files
File: /home/dreamlan/public_html/wp-content/themes/DreamLandNepal/templates/loop-layout2.php
<?php /* Loop Template Layout 2 used for index/archive/search */
$options = get_option('mh_options'); 
$excerpt_length = empty($options['excerpt_length']) ? '175' : $options['excerpt_length'];
?>
<article <?php post_class(); ?>>	
	<div class="loop-wrap loop-layout2">
		<div class="clearfix">
			<div class="loop-thumb">
				<a href="<?php the_permalink()?>">
					<?php if (has_post_thumbnail()) { the_post_thumbnail('cp_large'); } else { echo '<img src="' . get_template_directory_uri() . '/images/noimage_300x225.png' . '" alt="No Picture" />'; } ?>
				</a>
			</div>
			<div class="loop-content">
				<header>
					<h3 class="loop-title"><a href="<?php the_permalink()?>" rel="bookmark"><?php the_title(); ?></a></h3>
				</header>		
				<?php mh_excerpt($excerpt_length); ?>
			</div>
		</div>
		<?php mh_loop_meta(); ?>
	</div>
</article>