2016-02-04 162 views
0

我列出了產品類別上我的網站,但由於某些原因,永久鏈接循環內的產品只是引導用戶到博客文章,而不是產品或類別等:WordPress的永久鏈接產品

<div class="mobile-show"> 

<?php 
$args = array(
    'number'  => $number, 
    'orderby' => $orderby, 
    'order'  => $order, 
    'hide_empty' => $hide_empty, 
    'include' => $ids 
); 

$product_categories = get_terms('product_cat', $args); 

foreach($product_categories as $cat) { ?> 
    <?php echo '<ul class="cat_list_mobile">'; ?> 
    <a href="<?php echo get_permalink(); ?>"> 
    <?php echo '<li><div class="col-group-2">' . $cat->name . '</div><div class="col-group-2 text-right"><i class="fa fa-chevron-right"></i></div></li> 
      </a> 
      </ul>'; 
} 

?> 

</div> 

它顯示了預期的類別,也許我在這裏失去了一些東西?

回答