WP_MatchesMapRegex::_map
do the actual mapping
Method of the class: WP_MatchesMapRegex{}
No Hooks.
Returns
String.
Usage
// private - for code of main (parent) class only $result = $this->_map();
WP_MatchesMapRegex::_map() WP MatchesMapRegex:: map code WP 7.0
private function _map() {
$callback = array( $this, 'callback' );
return preg_replace_callback( $this->_pattern, $callback, $this->_subject );
}