RSSCache::error() WordPress Method
The RSSCache::error() method is used to return an error message for the RSSCache class. This is useful for debugging purposes.
RSSCache::error( $errormsg, $lvl = E_USER_WARNING ) #
Source
File: wp-includes/rss.php
function error ($errormsg, $lvl=E_USER_WARNING) { $this->ERROR = $errormsg; if ( MAGPIE_DEBUG ) { trigger_error( $errormsg, $lvl); } else { error_log( $errormsg, 0); } }
Expand full source codeCollapse full source codeView on TracView on GitHub