douxiduan8344 2014-09-02 10:03
浏览 44
已采纳

Wordpress Functions.php文件没有排队任何东西

I don't know why, but my functions.php file doesn't load any script/style. This is my functions.php file:

<?php

function promotie_load_styles() {
    /* If this is the admin area of WordPress, don't do anything */
    if( is_admin() )
        return;

    wp_enqueue_script('latest-jquery','https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js');

    wp_enqueue_style('fonts', 'http://fonts.googleapis.com/css?family=PT+Sans');

    wp_register_style('style', get_template_directory_uri() . '/style.css');
    wp_enqueue_style('style');

    wp_register_script('html5shiv', 'https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js');
    wp_enqueue_script('html5shiv');
    wp_register_script('respond','https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js');
    wp_enqueue_script('respond');

    // bootstrap stuff
    wp_register_script('bootstrap-js',  get_template_directory_uri() . '/js/bootstrap.min.js');
    wp_enqueue_script('bootstrap-js');

    wp_register_style('bootstrap-css', '//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css');
    wp_enqueue_style('bootstrap-css');
}
add_action('wp_enqueue_scripts', 'promotie_load_styles');

What is the problem here? I am simply adding action to wp_enqueue_scripts and enqueue scripts/styles, but when I inspect the page, and go to Resources, there is nothing there, no style, no script.

EDIT1: Another strange thing is that my theme used to work without functions.php file, I was loading the scripts in the header, before reading more about enqueuing. Now, I created the functions.php and nothing gets imported properly. I added some random text there and no error is returned, and if I type something outside the function, it gets echoed in the html page.

My guess is that there is an error somewhere, but I don't know how to debug it, I have the WP_DEBUG set to true in wp-config, I don't really know what to do.

  • 写回答

1条回答 默认 最新

      报告相同问题?

      相关推荐 更多相似问题

      悬赏问题

      • ¥15 ubuntu18.04 tty报错&tty界面su/sudo命令无法执行,如何解决?
      • ¥20 关于c语言网络编程,实现传文件和即时聊天
      • ¥20 下面的压缩方法是否可行
      • ¥15 结构体数组读取文件信息失败,读取不了
      • ¥15 kaldi thchs30 训练遇到问题
      • ¥15 shellter无法使用,如何解决?(操作系统-kali)
      • ¥15 matlab动态模态分解程序
      • ¥60 关于渗透及远控的几个问题
      • ¥15 python文本词汇出现次数统计
      • ¥15 使用按键和串口,记录按键在不消抖的情况下触发的次数