Woocommerce分页链接

时间:2018-06-22 22:55:04

标签: php wordpress woocommerce

我创建了一个自定义页面模板,并按类别显示产品,这是我的代码:

/<?php
/**
 * Template Name: Drones
 */

// Set the parameters of your query
$args = array( 'post_type' => 'product', 'product_cat' => 'drones' );

// Override directly the query of the page, so that it is propagated to all the functions and doesn't break any WooCommerce feature
query_posts( $args );

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

wc_get_template( 'archive-product.php' );

因此,在前端视图中显示了产品以及分页链接 这是当我单击分页时显示的产品仍然与首页中的产品相同,并且当我检查链接时它看起来像这样的问题

www.wordpress.com/drones/page/2

当我尝试将产品类别放在链接中时,它起作用:

www.wordpress.com/product-category/drones/page/2

该如何解决?似乎需要对代码进行一些调整。请帮助

0 个答案:

没有答案