Add url filters. Props coffee2code. see #7709

git-svn-id: http://svn.automattic.com/wordpress/trunk@10983 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-04-17 07:05:41 +00:00
parent 4754d22576
commit 2903685c95

View File

@ -1695,7 +1695,7 @@ function admin_url($path = '') {
if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
$url .= ltrim($path, '/');
return $url;
return apply_filters('admin_url', $url, $path);
}
/**
@ -1713,7 +1713,7 @@ function includes_url($path = '') {
if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
$url .= ltrim($path, '/');
return $url;
return apply_filters('includes_url', $url, $path);
}
/**
@ -1736,7 +1736,7 @@ function content_url($path = '') {
if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
$url .= '/' . ltrim($path, '/');
return $url;
return apply_filters('content_url', $url, $path);
}
/**
@ -1768,7 +1768,7 @@ function plugins_url($path = '', $plugin = '') {
if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
$url .= '/' . ltrim($path, '/');
return $url;
return apply_filters('plugins_url', $url, $path, $plugin);
}
?>