ROOTPLOIT
Server: LiteSpeed
System: Linux in-mum-web1878.main-hosting.eu 5.14.0-570.21.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 11 07:22:35 EDT 2025 x86_64
User: u435929562 (435929562)
PHP: 7.4.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //home/u435929562/domains/tec-edu.in/public_html/wp-content/themes/lectura-lite/loop-archives.php
<?php
$custom_args = array(
	'post_type' => 'post',
	'posts_per_page' => get_option ( 'posts_per_page' ),
	'paged' => absint($paged)
);

$lectura_lite_query = new WP_Query( $custom_args ); 
if ( $lectura_lite_query->have_posts() ) : ?>
	
	<ul class="academia-posts-archive academia-loop-posts">
		
		<?php 
		while ( $lectura_lite_query->have_posts() ) : $lectura_lite_query->the_post(); 

		$classes = array('academia-post','academia-loop-post');
		if ( !has_post_thumbnail() ) {
			$classes[] = 'post-nothumbnail';
		} else {
			$classes[] = 'has-post-thumbnail';
		}	
		?>

		<li <?php post_class($classes); ?>>
	
			<?php if ( has_post_thumbnail() ) { ?>
			<div class="post-cover">
				<div class="post-cover-wrapper"><?php 

					echo '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">';
					the_post_thumbnail('post-thumbnail');
					echo '</a>'; ?>
				</div><!-- .post-cover-wrapper -->
			</div><!-- .post-cover --><?php } ?><!-- ws fix
			
			--><div class="post-content">
				<h2 class="title-ms title-post"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'lectura-lite' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_title(); ?></a></h2>
				<p class="post-excerpt"><?php echo get_the_excerpt(); ?></p>
				<p class="post-meta"><span class="datetime"><time datetime="<?php echo esc_attr(get_the_time("Y-m-d")); ?>" pubdate><?php echo esc_html(get_the_time(get_option('date_format'))); ?></time></span><span class="category"><?php the_category(', '); ?></span></p>
			</div><!-- .post-content -->
	
			<div class="cleaner">&nbsp;</div>
			
		</li><!-- .academia-post -->
		
		<?php endwhile; ?>
		
	</ul><!-- .academia-posts-archive .academia-loop-posts -->

	<?php get_template_part( 'pagination'); ?>
	
	<?php wp_reset_postdata(); ?>

<?php endif; ?>