返回功能中的自定义链接

时间:2016-09-27 11:55:53

标签: php wordpress

我的WooCommerce中有一个脚本/功能。 此功能根据类别以及用户是否已登录来更改按钮的名称。

function woo_custom_cart_button_text() {

if ( has_term( 'kategoria', 'product_cat' ) ) {
  if(is_user_logged_in()) {
    return ( 'Download' );
  }
  else {
      return ( 'Log In to Download' );
  }
} else {
return __( 'Add to Cart', 'woocommerce' );
}
}

一切正常,但是当你点击按钮重定向个人网址时怎么做?

EG。 LOG IN TO DOWNLOAD按钮被重定向到www.example.com。

0 个答案:

没有答案