
");
function dz_plugin_callback($match)
{
$output = DZ_TARGET;
$output = str_replace("###URL###", $match[1], $output);
return ($output);
}
function dz_plugin($content)
{
return (preg_replace_callback(DZ_REGEXP, 'dz_plugin_callback', $content));
}
add_filter('the_content', 'dz_plugin');
add_filter('comment_text', 'dz_plugin');
?>