HEX
Server: LiteSpeed
System: Linux node612.namehero.net 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: dfwparty (1186)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/dfwparty/bizcoach.biz/wp-content/themes/mh-magazine/template-sitemap.php
<?php /* Template Name: Sitemap */ ?>
<?php get_header(); ?>
<div class="mh-wrapper">
	<?php mh_before_page_content(); ?>
	<header class="page-header">
		<?php the_title('<h1 class="entry-title page-title">', '</h1>'); ?>
	</header>
	<div class="mh-row mh-sitemap clearfix">
		<div class="mh-col-1-3">
			<h5 class="mh-widget-title">
				<span class="mh-widget-title-inner">
					<?php esc_html_e('Recent Articles', 'mh-magazine'); ?>
				</span>
			</h5>
			<ul class="mh-sitemap-list"><?php
				$recent = new WP_query(array('posts_per_page' => 10));
				while ($recent->have_posts()) : $recent->the_post(); ?>
					<li class="sitemap-list-item">
						<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( the_title('', '', false ) ); ?>">
							<?php the_title(); ?>
						</a>
					</li><?php
				endwhile; wp_reset_postdata(); ?>
			</ul>
			<h5 class="mh-widget-title">
				<span class="mh-widget-title-inner">
					<?php esc_html_e('Pages', 'mh-magazine'); ?>
				</span>
			</h5>
			<ul class="mh-sitemap-list"><?php
				wp_list_pages(array('title_li' => '', 'post_status' => 'publish')); ?>
			</ul>
		</div>
		<div class="mh-col-1-3">
			<h5 class="mh-widget-title">
				<span class="mh-widget-title-inner">
					<?php esc_html_e('Archives', 'mh-magazine'); ?>
				</span>
			</h5>
			<ul class="mh-sitemap-list">
				<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
			</ul>
		</div>
		<div class="mh-col-1-3">
			<h5 class="mh-widget-title">
				<span class="mh-widget-title-inner">
					<?php esc_html_e('Categories', 'mh-magazine'); ?>
				</span>
			</h5>
			<ul class="mh-sitemap-list"><?php
				wp_list_categories(array('title_li' => '', 'feed' => 'RSS', 'show_option_none' => esc_html__('No categories', 'mh-magazine'))); ?>
			</ul>
		</div>
	</div>
</div>
<?php get_footer(); ?>