我正在尝试从主题扩展插件内部的类,但是如果我用if(class_exists('Hello_Class'))
检查要扩展的类,则可以看到该类不可用。插件结构如下:
class PluginCore {
public static $info;
function __construct() {
add_action( 'after_setup_theme', array( $this, 'after_setup_theme' ), 12 );
}
function after_setup_theme() {
// the class I want extend
require_once '/Hello_Class.php';
}
}
new PluginCore();
我想扩展类“ Hello_Class”,我尝试使用像after_setup_theme
和init
这样的钩子来完成这项工作,但是没有任何效果。有没有办法
使这项工作。