U kunt eenvoudig aangepaste HTML toevoegen voor of na de Download productinhoud door gebruik te maken van de
edd_before_download_content en/of edd_after_download_content hooks.
Om bijvoorbeeld inhoud toe te voegen vóór de hoofdproductinhoud, kunt u zoiets als dit gebruiken:
function pw_edd_before_download_content( $download_id ) {
echo 'This is content added before the main product content.';
}
add_action( 'edd_before_download_content', 'pw_edd_before_download_content' );
