Filtered items aren’t being displayed
-
Hello, I don’t know what went wrong. But could you pls help out? the filtered items aren’t being displayed.
The filter info is being displayed correctly.
<?php do_action(‘show_beautiful_filters’); ?>
<?php do_action(‘show_beautiful_filters_info’); ?><?php $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; ?>
<?php $args = array( ‘post_type’ => ‘job’,
‘posts_per_page’ => 5,
‘order’ => ‘ASC’,
‘paged’ => $paged, );$loop = new WP_Query( $args );
if( have_posts() ) :
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<ul class=”career-list”>-
<div class=”career-box os-animation” data-os-animation=”fadeInUp” data-os-animation-delay=”0.4s”>
<div class=”logo”>
/assets/images/recruitment-service-icon.jpg” alt=””>
</div>
<div class=”content”>
<h6> <?php the_title(); ?> </h6>
<p><?php the_field(‘info’); ?> </p>
</div>
<div class=”btn-box”>
” class=”view-button”>View
</div>
</div>
<?php endwhile; endif; wp_reset_postdata();?>
-
<div class=”career-box os-animation” data-os-animation=”fadeInUp” data-os-animation-delay=”0.4s”>
- The topic ‘Filtered items aren’t being displayed’ is closed to new replies.