Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

WP_MatchesMapRegex::_map(): string

do the actual mapping


Return

string


Top ↑

Source

File: wp-includes/class-wp-matchesmapregex.php. View all references

private function _map() {
	$callback = array( $this, 'callback' );
	return preg_replace_callback( $this->_pattern, $callback, $this->_subject );
}


Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.