在wordpress插件中包含handontable

时间:2014-05-11 21:19:38

标签: wordpress wordpress-plugin handsontable

我想在我正在尝试为WordPress开发的插件中添加一个handontable。 该表应在Admin仪表板中可见。

我根本无法显示表格。

在Wordpress中是否存在一个通用的障碍?

非常感谢提前

1 个答案:

答案 0 :(得分:0)

您是否使用正确的方法(wp_register_script和wp_enqueue_script)绑定了.js文件?。

你应该这样做:

// Registering the back-end scripts
add_action( 'wp_enqueue_scripts', 'my_backend_content_scripts' ); 


// ! Calling the back-end scripts 

function my_backend_content_scripts(  ) {

        if( is_admin() ){ 
            // parameter ( name, script_url, depencys, version, include in header )
            wp_register_script( 'my_js', 'www.fullscript_url.com/handsontable.js', array('jquery'), null, true );  
            wp_enqueue_script( 'my_js');                

        }       

}