set_props(); add_action( 'init', [ $this, 'register_taxonomy' ] ); } /** * Regisetr custom taxonomy * * @since 1.0.0 * * @return void */ public function register_taxonomy() { register_taxonomy( $this->name, $this->cpt, $this->args ); } /** * Set config * * @since 1.0.0 * * @return void */ abstract public function set_props(); }