我在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地址访问本地服务器,则无法正常工作。我该如何解决这个问题?
谢谢!