你应该联系插件作者,因为插件支持在这个网站上通常是离题的。
但是我很好奇,偷看了一下插件代码,发现了这句话:
add_action( \'wp_head\', array(\'dc_jqverticalmegamenu\', \'header\') );
其中
header()
方法假定为静态的,但不是:
function header(){
// ...
}
这就是为什么会弹出这个严格的通知。
插件通过以下方式创建类的实例:
// Initialize the plugin.
$dcjqverticalmegamenu = new dc_jqverticalmegamenu();
因此,您应该尝试:
add_action( \'wp_head\', array( $this, \'header\') );
和其他静态调用类似。