You appear to be a bot. Output may be restricted
Description
Print Errors
Prints all stored errors. For use during checkout. If errors exist, they are returned.
Usage
$void = edd_print_errors();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/error-tracking.php
Lines:
1 to 10 of 10
function edd_print_errors() { $errors = edd_get_errors(); if ( $errors ) { echo edd_build_errors_html( $errors ); edd_clear_errors(); } }