wp_register_script(\'moment\', plugin_dir_url( __FILE__ )."js/moment.min.js", false, null, true);
wp_register_script(\'fullcalendar\', plugin_dir_url( __FILE__ )."js/fullcalendar.min.js", false, null, true);
wp_enqueue_script(\'moment\');
wp_enqueue_script(\'fullcalendar\');
wp_register_style(\'fullcalendarcss\', \'http://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.2.3/fullcalendar.min.css\');
wp_register_style(\'fullcalendarprintcss\', \'http://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.2.3/fullcalendar.print.css\');
wp_enqueue_style( \'fullcalendarcss\');
wp_enqueue_style( \'fullcalendarprintcss\');
这些文件是我在插件中注册的。这是我的插件页面代码。
jQuery(document).ready(function($) {
var calendar = jQuery(\'#calendar\').fullCalendar({
editable: true,
header: {
left: \'prev,next today\',
center: \'title\',
right: \'month,agendaWeek,agendaDay\'
}
});
});
现在我没有收到任何错误,也没有在我的页面上获取日历。