You appear to be a bot. Output may be restricted
Description
Download History Shortcode
Displays a user's download history.
Usage
$string = edd_download_history();
Parameters
Returns
string
Source
File name: easy-digital-downloads/includes/shortcodes.php
Lines:
1 to 17 of 17
function edd_download_history() { if ( is_user_logged_in() ) { ob_start(); if( ! edd_user_pending_verification() ) { edd_get_template_part( 'history', 'downloads' ); } else { edd_get_template_part( 'account', 'pending' ); } return ob_get_clean(); } }