HEX
Server: LiteSpeed
System: Linux premium221.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: madepabj (2566)
PHP: 8.3.26
Disabled: NONE
Upload Files
File: //home/madepabj/xpresscleaningservices.com/wp-content/themes/cleeny/template-parts/content-list.php
<?php

/**
 * Template part for displaying archive posts
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package cleeny
 */
?>
<!-- ARCHIVE QUERY -->
<div class="col-md-12 col-sm-12 col-xs-12 blog-right-content">
	<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
		<div class="cleeny-single-blog  cleeny-lt">
			<!-- BLOG THUMB -->
			<?php if (!empty(get_the_post_thumbnail())) { ?>
				<div class="cleeny-blog-thumb ">
					<a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail(); ?> </a>
					<div class="cleeny-blog-meta-top">
						<?php $cleeny_post_categories = get_the_category(); ?>

						<?php if (!empty($cleeny_post_categories)) :

							$cleeny_first_category = $cleeny_post_categories[0];

							$cleeny_category_name = $cleeny_first_category->name;
							$cleeny_category_link = get_category_link($cleeny_first_category); ?>
							<ul class="post-categories">
								<li><a href="<?php echo esc_url($cleeny_category_link) ?>"><?php echo esc_html($cleeny_category_name);?></a></li>
							</ul>
						<?php endif ?>
					</div>
				</div>
			<?php } ?>

			<!-- BLOG CONTENT -->
			<div class="cleeny-blog-content-area ">
				<div class="cleeny-blog-meta-left">
					<a href="<?php echo get_author_posts_url(get_the_author_meta('ID'), get_the_author_meta('user_nicename')); ?>"> <i class="fa fa-user"></i><?php esc_html_e('by ', 'cleeny'); ?><?php the_author(); ?></a>
					<span><i class="fa fa-calendar" aria-hidden="true"></i><?php echo get_the_time(get_option('date_format')); ?></span>

				</div>
				<div class="blog-page-title ">
					<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
				</div>
				<div class="blog-description">
					<p><?php echo wp_trim_words(get_the_content(), 23, ' '); ?></p>
				</div>
				<div class="blog-readmore">
					<a href="<?php the_permalink(); ?>"><?php esc_html_e('Read More', 'cleeny'); ?> </a>
				</div>
			</div>
		</div>
	</div>
</div>