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/sitemap.php
<?php /* Template Name: Sitemap */ ?>
<?php $options = get_option('mh_options'); ?>
<?php get_header(); ?>
<div class="wrapper entry sitemap">
	<?php mh_before_page_content(); ?> 	
	<div class="row clearfix">
		<div class="col-1-3 mq-sidebar">
			<h5 class="widget-title"><?php _e('Recent posts', 'mh'); ?></h5>
			<ul><?php 		
				$args = array('posts_per_page' => 10);
				$recent = new WP_query($args);
				while ($recent->have_posts()) : $recent->the_post(); ?>
					<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li><?php 
				endwhile; wp_reset_postdata(); ?>
			</ul>
			<h5 class="widget-title"><?php _e('Pages', 'mh'); ?></h5> 
			<ul><?php
				$args = array('title_li' => '', 'post_status' => 'publish'); 
				wp_list_pages($args); ?> 
			</ul>
		</div>
		<div class="col-1-3 mq-sidebar">
			<h5 class="widget-title"><?php _e('Archives', 'mh'); ?></h5>
			<ul>
				<?php wp_get_archives('type=monthly&show_post_count=1'); ?>		
			</ul>
		</div>
		<div class="col-1-3 mq-sidebar">
			<h5 class="widget-title"><?php _e('Categories', 'mh'); ?></h5>
			<ul><?php
				$args = array('title_li' => '', 'feed' => 'RSS', 'show_option_none' => __('No categories', 'mh')); 
				wp_list_categories($args); ?> 
			</ul>
		</div>
	</div>
</div>
<?php get_footer(); ?>