WC_Product::is_featuredpublicWC 1.0

Returns whether or not the product is featured.

Method of the class: WC_Product{}

No Hooks.

Returns

true|false.

Usage

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

WC_Product::is_featured() code WC 10.4.3

public function is_featured() {
	return true === $this->get_featured();
}