| Server IP : 65.109.86.83 / Your IP : 37.27.51.148 Web Server : nginx/1.14.1 System : Linux libra 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 20:24:04 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.31 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/zodiac22/ |
Upload File : |
<div id="blog-sidebar">
<?php dynamic_sidebar('sidebar-1'); ?>
<form class="mb-3 search-form-sidebar" method="get" action="<?php echo esc_url(home_url('/')); ?>">
<input type="search" name="s" id="searchBox" class="input_text form-control" placeholder="Search and hit enter"
aria-label="Search">
<ul id="search-results"></ul>
</form>
<section class="pt-4 px-2">
<h5 class="text-muted mb-2">Anna's Picks</h5>
<?php
$the_query = new WP_Query('tag=rucni');
if ($the_query->have_posts()) {
while ($the_query->have_posts()) {
$the_query->the_post();
?>
<a href="<?php the_permalink(); ?>" class="row mb-3 py-3 text-decoration-none">
<div class="col-md-8">
<h3 class="h6 font-weight-normal"><?php the_title(); ?></h3>
<time class="text-muted small"><?php echo get_the_date('F jS, Y'); ?></time>
</div>
<div class="col-md-4">
<img src="<?php echo esc_url(get_the_post_thumbnail_url(get_the_ID(), 'blog_featured_regular')); ?>"
class="img-fluid" alt="<?php the_title_attribute(); ?>"/>
</div>
</a>
<?php
}
}
wp_reset_postdata();
?>
</section>
</div>