WC_Query::visibility_meta_query()publicWC 1.0

Deprecated from version 3.0.0 Replaced with taxonomy.. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Returns a meta query to handle product visibility.

Method of the class: WC_Query{}

No Hooks.

Return

Array.

Usage

$WC_Query = new WC_Query();
$WC_Query->visibility_meta_query( $compare );
$compare(string)
.
Default: 'IN'

Changelog

Deprecated since 3.0.0 Replaced with taxonomy.

WC_Query::visibility_meta_query() code WC 8.6.1

public function visibility_meta_query( $compare = 'IN' ) {
	return array();
}