我有 3 方插件,例如
google-calendar-events
里面有
include_once 'includes/main.php';
add_action('init', [$this, 'init'], 5);
所以我知道这个类位于全局命名空间中? 我在maespace找到了课程
\SimpleCalendar\Calendars\Default_Calendar
在基本方法中
public function get_events()
{
return new Events($this->events, $this->timezone);
}
```
But i have no idea how can i get that data to my template file.
Any one can clear that for me or use this plugin ?
这是一种不好的做法。请改用挂钩和过滤器。
您可以使用此代码获取事件列表。
if (function_exists('google_calendar_events_get_events')) {
$events = google_calendar_events_get_events();
foreach ($events as $event) {
}
}