定义包含文件夹

class Avada_Admin {
private $includes_path = '';


/**
* Construct the admin object.
*
* @since 3.9.0
*/
public function __construct() {
  $this->includes_path = wp_normalize_path( dirname( __FILE__ ) );
  }
  }
  public function welcome_screen() {
require_once $this->includes_path . '/admin-screens/welcome.php';
}
}

你可能感兴趣的:(avada)