Product::get_channel()

Summary

Get the Channel term associated with this post


Return

(WP_Term) The WordPress Channel term


Source

File: src/BigCommerce/Post_Types/Product/Product.php

		if ( empty( $channels ) ) {
			$connections = new Connections();

			return $connections->current();
		}

		return reset( $channels );
	}

	/**


User Contributed Notes

You must log in before being able to contribute a note or feedback.