我实现了class
我的插件中的结构,例如:
class Ethans_Plugin {
public function __construct() {
add_filter( \'admin_init\', array( $this, \'admin\' ), 10, 1 );
add_action( \'admin_footer\', array( $this, \'footer\' ), 10, 1 );
}
public function admin() {
# code here...
}
public function footer() {
# code here...
}
}
当我使用泛型名称定义函数时,例如
admin
或
footer
这会与其他同名函数冲突吗?或者,由于它们在一个类中,这些函数名将使它们唯一?