includes_url()
是一个在 WordPress 中检索包含目录的 url 的函数,默认情况下其输出看起来像http://example.com/wp-includes/
.
该函数的核心代码:
function includes_url($path = '') {
$url = site_url() . '/' . WPINC . '/';
if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
$url .= ltrim($path, '/');
return apply_filters('includes_url', $url, $path);
}
如何用我自己的函数替换它(使用functions.php)?本质上,我想将第二行更改为 -$url = 'http://static-content.com/' . WPINC . '/';