我的分页在我的网站www.scottiescotsman.com上运行得很好 但由于某些明显的原因,它在这个页面上无法正常工作..
<?php get_header(); ?>
<div class="col-md-12">
<?php bd_pagination(); ?>
</div>
<?php
$args = array(
'post_type' => 'movies',
'orderby' => 'name',
'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'genre',
'field' => 'slug',
'terms' => 'drama'
)
)
);
$drama = new WP_Query( $args );
if ( $drama->have_posts() ) : while ( $drama->have_posts() ) : $drama->the_post();
$sto = get_post_meta( get_the_ID(), "storyline", true ); ?>
<div class="row" style="color: #ddd;">
<div class="col-md-8 col-md-offset-2">
<a href="<?php the_permalink(); ?>"><h3><?php echo the_title(); ?></h3></a><p><b style="color: #fff">Storyline :</b> <?php echo $sto; ?></p>
</div>
</div>
<?php wp_reset_postdata(); ?>
<?php endwhile; ?>
<?php else : echo '<p>NO CONTENT FOUND</p>'; ?>
<?php endif; ?>
<div class="col-md-12">
<?php bd_pagination(); ?>
</div>
<?php get_template_part( 'second-footer' ); ?>
<?php get_footer(); ?>
希望有人可以帮助解决这个问题
史蒂芬