如何在wordpress funcation.php文件中覆盖插件类的功能

时间:2016-11-18 07:40:34

标签: php wordpress

我的插件中有类似下面的课程。

class MyClass {
public function __construct() {
      add_action( 'wp',array( $this, 'getStuffDone' ) );
 }
 public function getStuffDone() {
      // .. This is where stuff gets done ..
 }

}

我想覆盖功能" getStuffDone"用我的自定义代码。是不是可以在funcation.php中做到这一点?如果是的话,我该怎么做。请帮忙。

谢谢。

0 个答案:

没有答案