Ajax分页Wordpress [插件]

时间:2016-02-24 16:01:15

标签: php jquery ajax wordpress pagination

我正在使用这个wordpress插件:

https://sr.wordpress.org/plugins/malinky-ajax-pagination/

我需要在每个next和prev请求中加载5个帖子

这是我的代码iside模板:

<div class=" row site-main-products">
                    <?php
                    $args = array ('post_type' => 'product', 'posts'=>$paged);
                    $new_query = new WP_Query($args);
                    while ($new_query->have_posts()) : $new_query->the_post();
                        ?>
                        <div class="col-3-products post">
                            <a href="<?php the_permalink(); ?>"><?php echo get_the_post_thumbnail($new_query->post->ID, 'shop_catalog'); ?></a>
                            <div class="caption">
                                <h4 class="pull-right price"><?php echo $product->get_price_html(); ?></h4>
                                <h4><a class="product-name" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
                                </h4>
                                <p><?php echo the_content() ?></p>
                            </div>
                        </div>

                    <?php
                    endwhile;
                    wp_reset_query();
                    ?> 

                </div>

问题是它只是加载但现在显示帖子。

0 个答案:

没有答案