WC_Product_Simple::add_to_cart_url()publicWC 1.0

Get the add to url used mainly in loops.

Method of the class: WC_Product_Simple{}

Hooks from the method

Return

String.

Usage

$WC_Product_Simple = new WC_Product_Simple();
$WC_Product_Simple->add_to_cart_url();

WC_Product_Simple::add_to_cart_url() code WC 8.6.1

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 );
}