如何让WordPress的本地开发版引用本地资源文件

By admin, 16 六月, 2015

 修改wp-includes/option.php,让系统根据当前域名自动替换前缀,其中'http://localhost/skjy'根据需要修改成具体值。

 

 if ( in_array( $option, array('siteurl', 'home', 'category_base', 'tag_base') ) ) {
        if (in_array($option, array('siteurl', 'home')) && strpos($_SERVER['HTTP_HOST'], 'localhost') !== FALSE)
            $value = 'http://localhost/skjy';
        else
            $value = untrailingslashit( $value );
    }

标签

评论

Restricted HTML

  • 允许的HTML标签:<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <img src>
  • 自动断行和分段。
  • 网页和电子邮件地址自动转换为链接。
验证码
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
请输入"Drupal10"