Wordpress使用完全限定的http:// localhost /而不是相对来解析get_template_directory_uri()

时间:2016-12-04 12:20:02

标签: wordpress

我在xampp环境中安装了wordpress。我主题中的所有CSS和JS都包含在:

wp_enqueue_style('kiga_spottberg_pure', get_template_directory_uri() . '/bower_components/pure/pure-min.css', array(), null);

现在问题是,在我的html源代码中,每个地方都打印了完整的uri:

<link rel='stylesheet' id='kiga_spottberg_pure_grids-css'  href='http://localhost/wordpress/wp-content/themes/kiga_spottberg/bower_components/pure/grids-min.css' type='text/css' media='all' />

但是,如果我通过IP地址访问本地服务器,则无法正常工作。我该如何解决这个问题?

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以在[设置]-> [常规]中更改博客网址,或通过遵循instructions from the WordPress文档来设置动态网站的网址。