为WordPress的WooCommerce类别添加外部URL

时间:2019-03-18 16:40:53

标签: wordpress woocommerce

为此付出了一些努力,我试图将外部URL添加到WooCommerce类别。

我希望能够设置类别名称,图像,顺序等(如现在所述),但是要使用URL覆盖默认行为并将用户带到外部链接。

有什么想法吗?

亲切的

1 个答案:

答案 0 :(得分:0)

add_filter('term_link', function( $url, $term, $taxonomy ) {
    if( $term -> term_id == 120 ) // 120 is the term ID which you want to change
        $url = "http://exapmle.com";

    return $url;
}, 10, 3);