自定义分类法无法正确回显网址

时间:2016-11-29 07:32:45

标签: php wordpress custom-taxonomy

我正在尝试创建遵循此结构的网址结构:

/产品/(PRODUCT_CATEGORY)/(后名)/

(product_category)是一种自定义分类。

每个产品类别只有一些产品,每个产品只有一个类别。我使用以下内容生成一个指向类别页面的链接,该页面显示该类别下的产品:

PHP:

$terms = get_terms( array(
    'taxonomy'   => 'product_category',
    'hide_empty' => false,
) );

foreach ( $terms as $term ) { 
    $image     = get_field('product_categories_image', $term );
    $term_link = get_term_link( $term );

HTML:

<a class="product-individual" href="<?php echo $term_link ?>" title="<?php echo $term->name ?>" style="text-decoration: none;">

使用浏览器检查器时,我可以看到“title”标签正确显示,但不能显示URL。这是产生的:

输出:

http://"siteurl"/?taxonomy=product_category&term=hotelgift-cards-holders

0 个答案:

没有答案