WC_Product_Simple::add_to_cart_url() public WC 1.0
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 5.0.0
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() : ''
)
) : $this->get_permalink();
return apply_filters( 'woocommerce_product_add_to_cart_url', $url, $this );
}