如何在wordpress插件的index.php文件中的函数中使用我的类?

时间:2019-05-31 05:36:42

标签: php wordpress

我有一个正在使用的插件,一切正常,但是一切都在我的index.php文件中,所有逻辑都在其中。我目前正在重构,并在单独的文件中创建了一些类。我目前无法在插件功能中使用这些类。

在我的index.php文件中,我有一个处理定价简码的函数。 我也有定价课程,但是我无法使用它,

let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "MM/yyyy"
let enteredDate = dateFormatter.date(from: expiryDate.text!) /* line 3 - set to first day of month */
let now = Date()
if (enteredDate! < now) {
    //expired
    // does not work if current month and year 
    // is the same as the expiration date, 
    // because expiration day is set to the first day of the month on line 3
} else {
    // valid
    print("valid - now: \(now) entered: \(enteredDate)")
}

0 个答案:

没有答案