WC_Product_Simple::add_to_cart_url
Get the add to url used mainly in loops.
Метод класса: WC_Product_Simple{}
Хуки из метода
Возвращает
Строку.
Использование
$WC_Product_Simple = new WC_Product_Simple(); $WC_Product_Simple->add_to_cart_url();
Код WC_Product_Simple::add_to_cart_url() WC Product Simple::add to cart url WC 10.3.5
public function add_to_cart_url() {
$url = $this->is_purchasable() && $this->is_in_stock() ? remove_query_arg(
'added-to-cart',
add_query_arg(
array(
'add-to-cart' => $this->get_id(),
),
( function_exists( 'is_feed' ) && is_feed() ) || ( function_exists( 'is_404' ) && is_404() ) ? $this->get_permalink() : false
)
) : $this->get_permalink();
return apply_filters( 'woocommerce_product_add_to_cart_url', $url, $this );
}