astra_is_edd_single_product_page()

Check current page is an EDD single product page


Description


Return

(bool) true | false


Source

File: inc/compatibility/edd/edd-common-functions.php

	function astra_is_edd_single_product_page() {
		if ( is_singular( 'download' ) ) {
			return true;
		}
		return false;
	}

Changelog

Changelog
Version Description
1.5.5 Introduced.


User Contributed Notes

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