在wordpress中如何使用插件中的类

问题描述 投票:0回答:1

我有 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 ?
wordpress plugins google-calendar-api wordpress-plugin-creation
1个回答
0
投票

这是一种不好的做法。请改用挂钩和过滤器。

您可以使用此代码获取事件列表。

if (function_exists('google_calendar_events_get_events')) {
   $events = google_calendar_events_get_events();
   foreach ($events as $event) {
   }
}
© www.soinside.com 2019 - 2024. All rights reserved.