AtomParser::_ppublicWP 1.0

Method of the class: AtomParser{}

No Hooks.

Returns

null. Nothing (null).

Usage

$AtomParser = new AtomParser();
$AtomParser->_p( $msg );
$msg(required)
.

AtomParser::_p() code WP 6.8.1

function _p($msg) {
    if($this->debug) {
        print str_repeat(" ", $this->depth * $this->indent) . $msg ."\n";
    }
}