HEX
Server: LiteSpeed
System: Linux server019.our-control-panel.com 4.18.0-553.51.1.lve.1.el8.x86_64 #1 SMP Wed May 14 14:34:57 UTC 2025 x86_64
User: aashishs (1103)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/aashishs/manishjhanepal.com.np/wp-content/themes/nm_portfolio/sidebar.php
	<div class="col-lg-4 sidebar ftco-animate bg-light">
	    <div class="sidebar-box ftco-animate">
	        <h3 class="sidebar-heading">Recent Articles</h3>

                <?php
                    $args = array(
                        'post_type' => 'post',
                        'post_status' => 'publish',
                        'posts_per_page' => 5 , 
                            
                    );
                    $loop = new WP_Query( $args );     
                ?>

				<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>

	            <div class="block-21 mb-4 d-flex">
	                <a class="blog-img mr-4" style="background-image: url(<?php echo get_the_post_thumbnail_url()  ?>);"></a>
	                <div class="text">
	                  <h3 class="heading"><a href="<?php echo get_permalink() ?>"><?php print the_title();  ?></a></h3>
	                  <div class="meta">
	                    <div><a href="#"><span class="icon-calendar"></span> <?php the_time('F jS, Y'); ?></a></div>
	                    </div>

	                </div>
	            </div>

                <?php  
                    endwhile;
                    wp_reset_postdata();  
                ?>


	    </div>
	</div>