pagination works but ajax pagination not working
-
ajax loading is not working,now its work on page load when i click the pager, the page is reloaded and post listing working fine,
but i want this in ajax loading. what was the problem ?please help me
<section class=”news-carousal col-md-12 media-center”>
<div class=”row”>
<div class=”carousal-wrap” id=”main”>
<?php
$idObj = get_category_by_slug(‘news’);
$id = $idObj->term_id;
$paged1 = isset( $_GET[‘paged1’] ) ? (int) $_GET[‘paged1’] : 1;?>
<h2><?php echo $idObj->name;?></h2>
<span class=”sub-head”><?php echo $idObj->description;?></span>
<?php
$args = array(‘category_name’ => ‘news’,’posts_per_page’ => 2 ,’paged’ => $paged1,’orderby’ => ‘date’,’order’=> ‘DESC’);
$query = new WP_Query($args);
$myposts = get_posts( $args );$i=1;
foreach ( $myposts as $post ) : setup_postdata( $post );
?>
<div class=”carousal-field <?php if ($i%2 == 0){?>field-even<?php } ?> clearfix post” id=”content”>
<div class=”img-block”>
<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID, ‘thumbnail’) );?>
<img src=”<?php echo $url; ?>” class=”img-responsive” alt=”” />
</div>
<div class=”field-content”>
<span class=”date-field”><?php the_date(‘d.M.Y’); ?></span>
<p class=”news-head”><?php the_title();?></p>
<p class=”news-detail”><?php echo get_the_excerpt();?></p>
“><?php _e(‘Read more’);?>
</div>
</div>
<?php $i++; ?>
<?php endforeach;?>
<?php wp_reset_postdata();?>
</div>
</div>
<?php
// Set the pagination args.
$paginateArgs = array(
‘format’ => ‘?paged1=%#%’,
‘current’ => $paged1, // Reference the custom paged query we initially set.
‘total’ => $query->max_num_pages // Max pages from our custom query.
); ?>
<nav class=”navigation pagination” role=”navigation”>
<?php echo paginate_links( $paginateArgs ); ?>
</nav>
</section>
- The topic ‘pagination works but ajax pagination not working’ is closed to new replies.