我有一个具有以下构造的类:
public function __construct() {
self::$instance = $this;
$this->args['opt_name'] = "dovydastest";
/** When the rest of WP has loaded, kick-start the rest of the class */
add_action( 'init', array( $this, 'init' ) );
}
function init() {
do_action( 'simple_options_register' );
在init()函数中,我有一个更改$ this-> args变量的do_action。问题在于admin_init,并且在我需要之后会触发init()。
是否有任何解决方法或我需要在构造中添加自定义过滤器(重复重新调用,我希望不要使用)。