WC_Product::is_visible()publicWC 1.0

Returns whether or not the product is visible in the catalog.

Метод класса: WC_Product{}

Хуки из метода

Возвращает

true|false.

Использование

$WC_Product = new WC_Product();
$WC_Product->is_visible();

Код WC_Product::is_visible() WC 8.7.0

public function is_visible() {
	$visible = $this->is_visible_core();
	return apply_filters( 'woocommerce_product_is_visible', $visible, $this->get_id() );
}