is_shop()

Is_shop – Returns true when viewing the product type archive (shop).


Description Description


Return Return

(bool)


Top ↑

Source Source

File: includes/wc-conditional-functions.php

	function is_shop() {
		return ( is_post_type_archive( 'product' ) || is_page( wc_get_page_id( 'shop' ) ) );
	}


Top ↑

User Contributed Notes User Contributed Notes

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