Wordpress在哪里设置“admin_url”?

时间:2010-04-06 12:19:23

标签: php wordpress

基本上需要更改 - admin_url()返回任何想法的值吗?

1 个答案:

答案 0 :(得分:8)

此功能在 wp-includes / link-template.php 中定义,并提供过滤器:

/**
 * Retrieve the url to the admin area.
 *
 * @package WordPress
 * @since 2.6.0
 *
 * @param string $path Optional path relative to the admin url
 * @return string Admin url link with optional path appended
*/
function admin_url($path = '') {
    $url = site_url('wp-admin/', 'admin');

    if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
        $url .= ltrim($path, '/');

    return apply_filters('admin_url', $url, $path);
}

因此,您可以在主题中使用自己的过滤功能控制输出 functions.php

add_filter('admin_url', 'my_new_admin_url');

function my_new_admin_url()
{
    // Insert the new URL here:
    return 'http://example.org/boss/';
}

现在希望所有插件作者都使用此函数而不是硬编码路径......:)

附录

将此行添加到.htaccess:

Redirect permanent /wp-admin/ http://example.org/new_url/