Wamp lan中的wordPress不加载css

时间:2014-03-21 作者:Mariano

我在带有wamp的lan中使用wordpress。我可以从客户端PC正确地看到lan。它与非wordpress网站完美配合,因此我认为这不是lan设置问题。我应该在wordpress中设置什么特别的设置吗?实际上,它加载正确,但没有JS和CSS。

更新,以下是CSS和JS如何加载到插件中:

function agenda_my_scripts() {
if ( !is_admin() ) {
    // datepicker
    wp_enqueue_script( \'custom-datepicker\', plugins_url( \'sys/js/datepicker.js\', dirname(__FILE__) ), array(\'jquery\') );
    wp_enqueue_script(\'jquery-ui-datepicker\');
    // CSS
    wp_register_style( \'agenda_css\', plugins_url( \'sys/css/style.css\', dirname(__FILE__) ) );
    wp_enqueue_style( \'agenda_css\' );
    // jQuery CSS
    wp_register_style( \'jquery_ui_css\', plugins_url( \'sys/css/jquery-ui.css\', dirname(__FILE__) ) );
    wp_enqueue_style( \'jquery_ui_css\' );
}
}add\\u action(\'wp\\u enqueue\\u scripts\',\'agenda\\u my\\u scripts\');

然后子主题具有经典配置:

/*
Theme Name:   Theme name
Theme URI:    -
Description:  Description
Author:       Author
Author URI:   -
Template:     child_template
Version:      1.0
Tags:         -
Text Domain:  child_template
*/

@import url("../twentytwelve/style.css");
其中“模板”和“文本域”与文件夹名称匹配。

此外,如果我激活子主题,它将加载214!!

这很奇怪。。。

2 个回复
SO网友:Mariano

最后我解决了。。。这是一个非常恼人的问题!只需输入您的db并在wp\\U选项中进行更改:-siteurl:来自本地主机服务器的lan ip-主页:来自本地主机服务器的lan ip

就是这样!:)

SO网友:shamaseen

只需在sql控制台中运行此查询:

update wp_options
set option_value = \'/\'
WHERE option_name = \'home\'
   OR option_name = \'siteurl\'

结束

相关推荐

阻止安装Style.css cookie和文件缓存

我遇到了一个以前从未遇到过的问题。当我更新style.css “我的孩子”主题中的文件,该网页不使用新样式。我已经在我的浏览器中的一个cookie中指出了这一点style.css?ver=3.8.1 而不是基本的style.css. 顺便提一下,3.8.1是我的WordPress版本。我找到的唯一修复方法是手动删除cookie,但无论何时进行更改,都很麻烦。有没有关于如何修复的想法?