HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/alfouzantranspor/public_html/wp-content/themes/land-excavator/page.php
<?php
/**
 * The template for displaying all pages
 *
 * @package Land Excavator
 */

get_header();
?>

<div class="container">
	<?php
	$land_excavator_page_layout = get_theme_mod( 'land_excavator_page_layout', 'layout-1' );

	if ( $land_excavator_page_layout == 'layout-1' ) {
		?>
	<div class="site-wrapper">
		<main id="primary" class="site-main lay-width">
			<?php
			while ( have_posts() ) :
				the_post();

				get_template_part( 'revolution/template-parts/content', 'page' );

				if ( comments_open() || get_comments_number() ) :
					comments_template();
				endif;

			endwhile; // End of the loop.
			?>
		</main>
		<?php if ( is_active_sidebar( 'sidebar-1' )) { ?>
		<aside id="secondary" class="widget-area sidebar-width">
			<?php dynamic_sidebar( 'sidebar-1' ); ?>
		</aside>
		<?php } else { ?>
			<aside id="secondary" class="widget-area sidebar-width">
				<div class="default-sidebar">
					<aside id="search-3" class="widget widget_search">
						<h2 class="widget-title"><?php esc_html_e('Search Anything', 'land-excavator'); ?></h2>
						<?php get_search_form(); ?>
					</aside>
					<aside id="recent-posts-2" class="widget widget_recent_entries">
						<h2 class="widget-title"><?php esc_html_e('Latest Posts', 'land-excavator'); ?></h2>
						<ul>
							<?php
							$land_excavator_recent_posts = wp_get_recent_posts(array('numberposts' => 10));
							foreach ($land_excavator_recent_posts as $land_excavator_post) {
								echo '<li><a href="' . esc_url(get_permalink($land_excavator_post['ID'])) . '">' . esc_html($land_excavator_post['post_title']) . '</a></li>';
							}
							?>
						</ul>
					</aside>
					<aside id="recent-comments-2" class="widget widget_recent_comments">
						<h2 class="widget-title"><?php esc_html_e('Latest Comments', 'land-excavator'); ?></h2>
						<ul id="recentcomments">
							<?php
								$land_excavator_comments = get_comments(array(
									'number' => 10,
									'status' => 'approve',
								));
								foreach ($land_excavator_comments as $land_excavator_comment) {
									echo '<li class="recentcomments">' . esc_html($land_excavator_comment->comment_author) . ': <a href="' . esc_url(get_comment_link($land_excavator_comment->comment_ID)) . '">' . esc_html(get_the_title($land_excavator_comment->comment_post_ID)) . '</a></li>';
								}
							?>
						</ul>
					</aside>
					<aside id="categories-2" class="widget widget_categories">
						<h2 class="widget-title"><?php esc_html_e('Explore Categories', 'land-excavator'); ?></h2>
						<ul>
							<?php
								wp_list_categories(array(
									'title_li' => '',
							'number' => 10
								));
							?>
						</ul>
					</aside>
					<aside id="archives-2" class="widget widget_archive">
						<h2 class="widget-title"><?php esc_html_e('Blog Archives', 'land-excavator'); ?></h2>
						<ul>
							<?php
								wp_get_archives(array(
									'type' => 'postbypost',
									'format' => 'html',
								));
							?>
						</ul>
					</aside>
						<aside id="pages-2" class="widget widget_pages">
							<h2 class="widget-title"><?php esc_html_e('Explore Our Pages', 'land-excavator'); ?></h2>
							<ul>
								<?php
									wp_list_pages(array(
										'title_li' => '',
							'number' => 10
									));
								?>
							</ul>
						</aside>
					<aside id="calendar-2" class="widget widget_calendar">
							<h2 class="widget-title"><?php esc_html_e('Calender', 'land-excavator'); ?></h2>
							<?php get_calendar(); ?>
					</aside>
			   </div>
			</aside>
	<?php } ?>
	</div>
	<?php
	} elseif ( $land_excavator_page_layout == 'layout-2' ) {
		?>
	<div class="site-wrapper">
		<?php if ( is_active_sidebar( 'sidebar-1' )) { ?>
		<aside id="secondary" class="widget-area sidebar-width">
			<?php dynamic_sidebar( 'sidebar-1' ); ?>
		</aside>
		<?php } else { ?>
			<aside id="secondary" class="widget-area sidebar-width">
				<div class="default-sidebar">
					<aside id="search-3" class="widget widget_search">
						<h2 class="widget-title"><?php esc_html_e('Search Anything', 'land-excavator'); ?></h2>
						<?php get_search_form(); ?>
					</aside>
					<aside id="recent-posts-2" class="widget widget_recent_entries">
						<h2 class="widget-title"><?php esc_html_e('Latest Posts', 'land-excavator'); ?></h2>
						<ul>
							<?php
							$land_excavator_recent_posts = wp_get_recent_posts(array('numberposts' => 10));
							foreach ($land_excavator_recent_posts as $land_excavator_post) {
								echo '<li><a href="' . esc_url(get_permalink($land_excavator_post['ID'])) . '">' . esc_html($land_excavator_post['post_title']) . '</a></li>';
							}
							?>
						</ul>
					</aside>
					<aside id="recent-comments-2" class="widget widget_recent_comments">
						<h2 class="widget-title"><?php esc_html_e('Latest Comments', 'land-excavator'); ?></h2>
						<ul id="recentcomments">
							<?php
								$land_excavator_comments = get_comments(array(
									'number' => 10,
									'status' => 'approve',
								));
								foreach ($land_excavator_comments as $land_excavator_comment) {
									echo '<li class="recentcomments">' . esc_html($land_excavator_comment->comment_author) . ': <a href="' . esc_url(get_comment_link($land_excavator_comment->comment_ID)) . '">' . esc_html(get_the_title($land_excavator_comment->comment_post_ID)) . '</a></li>';
								}
							?>
						</ul>
					</aside>
					<aside id="categories-2" class="widget widget_categories">
						<h2 class="widget-title"><?php esc_html_e('Explore Categories', 'land-excavator'); ?></h2>
						<ul>
							<?php
								wp_list_categories(array(
									'title_li' => '',
							'number' => 10
								));
							?>
						</ul>
					</aside>
					<aside id="archives-2" class="widget widget_archive">
						<h2 class="widget-title"><?php esc_html_e('Blog Archives', 'land-excavator'); ?></h2>
						<ul>
							<?php
								wp_get_archives(array(
									'type' => 'postbypost',
									'format' => 'html',
								));
							?>
						</ul>
					</aside>
						<aside id="pages-2" class="widget widget_pages">
							<h2 class="widget-title"><?php esc_html_e('Explore Our Pages', 'land-excavator'); ?></h2>
							<ul>
								<?php
									wp_list_pages(array(
										'title_li' => '',
							'number' => 10
									));
								?>
							</ul>
						</aside>
					<aside id="calendar-2" class="widget widget_calendar">
							<h2 class="widget-title"><?php esc_html_e('Calender', 'land-excavator'); ?></h2>
							<?php get_calendar(); ?>
					</aside>
			   </div>
			</aside>
	<?php } ?>
		<main id="primary" class="site-main lay-width">
			<?php
			while ( have_posts() ) :
				the_post();

				get_template_part( 'revolution/template-parts/content', 'page' );

				if ( comments_open() || get_comments_number() ) :
					comments_template();
				endif;

			endwhile; // End of the loop.
			?>
		</main>
	</div>
	<?php 
	} elseif ( $land_excavator_page_layout == 'layout-3' ) { // No-sidebar layout ?>
		<div class="site-wrapper full-width">
			<main id="primary" class="site-main lay-width">
				<?php
				while ( have_posts() ) :
					the_post();

					get_template_part( 'revolution/template-parts/content', 'page' );

					if ( comments_open() || get_comments_number() ) :
						comments_template();
					endif;

				endwhile; // End of the loop.
				?>
			</main>
		</div>
	<?php } ?>
</div>

<?php
get_footer();