astra_is_edd_single_product_page()
Check current page is an EDD single product page
Description
Return
(bool) true | false
Source
File: addons/edd/classes/common-functions.php
	function astra_is_edd_single_product_page() {
		if ( is_singular( 'download' ) ) {
			return true;
		}
		return false;
	}
			Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description | 
|---|---|
| 1.6.10 | Introduced. |