Wordpress儿童主题& enqueue_script

时间:2011-07-20 17:19:09

标签: php wordpress

我正试图在 wp_hook之后直接从我的孩子主题的标题中将脚本排入,但是对于我的生活它没有出现 - 是什么给出了?

// register your script location, dependencies and version
   wp_register_script('jqtransform',
   get_bloginfo('stylesheet_directory') . '/includes/jqtransformplugin/jquery.jqtransform.js', false);
// enqueue the script
   wp_enqueue_script('jqtransform');

这是the link

1 个答案:

答案 0 :(得分:4)

原来我需要在wp_head调用中添加enqueue_script BEFORE ,并使用不同的URL路径thingamabob。这是最终的代码:

function add_my_scripts(){
    wp_register_script('jqtransform', 
    get_bloginfo('stylesheet_directory').'/includes/jqtransform/jquery.jqtransform.js', array('jquery'),'1.0');
    wp_enqueue_script('jqtransform'); 
}
add_action('init', 'add_my_scripts');