ruạṛ
<?php $__env->startSection('content'); ?> <div class="d-lg-flex justify-content-lg-between align-items-lg-start"> <h2>Search Results: <span class="brand-secondary"><?php echo get_search_query(); ?></span></h2> <div class="d-none d-lg-block"> <?php echo get_search_form(false); ?> </div> </div> <?php global $wp_query; ?> <?php $paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1 ?> <?php echo '<p class="text-muted">' . $wp_query->found_posts . ' results found' . '</p>'; ?> <div class="d-sm-block d-lg-none"> <?php echo get_search_form(false); ?> </div> <hr class="mb-4"> <?php if(!have_posts()): ?> <div class="alert alert-warning mb-4"> <?php echo e(__('Sorry, no results were found.', 'sage')); ?> </div> <?php endif; ?> <?php while(have_posts()): ?> <?php the_post() ?> <?php echo $__env->make('partials.content-search', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <?php endwhile; ?> <?php echo $__env->make('partials.pagination', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
cải xoăn