【发布时间】:2017-08-18 15:56:42
【问题描述】:
我的主插件文件中有这个 (/plugins/oglasi/oglasi.php)
<?php
/*
Plugin Name: Oglasi
Plugin URI:
Description: Custom post type "Oglasi".
Version: 1.0
Author: Dragi
Author URI:
License: GPLv2
*/
function james_adds_to_the_head() {
wp_register_script( 'add-bx-js', plugin_dir_url( __FILE__ ) . 'js/filter-oglasi.js', array('jquery'),'',true );
}
add_action( 'wp_enqueue_scripts', 'james_adds_to_the_head' );
这里 /plugins/oglasi/js/filter-oglasi.js 我有:
jquery(document).ready(function() {
console.log("MAIN IS LOADED");
alert("Dragi");
});
但它不起作用。有人可以帮忙吗?
【问题讨论】:
标签: javascript jquery wordpress plugins