向Events Calendar Pro(2.1)iCal提要添加附件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向Events Calendar Pro(2.1)iCal提要添加附件相关的知识,希望对你有一定的参考价值。

Requires filter added in ECP 2.1
  1. add_filter('tribe_ical_feed_item','tribe_add_attachment_to_ical', 10, 2);
  2.  
  3. function tribe_add_attachment_to_ical($item, $event){
  4.  
  5. $args = array(
  6. 'post_type' => 'attachment',
  7. 'numberposts' => -1,
  8. 'post_status' => null,
  9. 'post_parent' => $event->ID
  10. );
  11.  
  12. $size = 'full';
  13.  
  14. $attachments = get_posts($args);
  15. if ($attachments) {
  16. foreach ($attachments as $attachment) {
  17. $item[] = "ATTACH:".wp_get_attachment_image_src($attachment->ID, $size);
  18.  
  19. }
  20. }
  21.  
  22. return $item;
  23. }

以上是关于向Events Calendar Pro(2.1)iCal提要添加附件的主要内容,如果未能解决你的问题,请参考以下文章

Google 日历 API 范围 - calendar.readonly 和 calendar.events.readonly 之间有啥区别?

Google Calendar Events Watch 错误 401 Unauthorized with service account

Calendar Pro - 如何配置使用 src 路径不在 extensible-all-debug 中

php 事件日历PRO:即使对于tribe_events短代码,也使tribe_is_week()返回TRUE。

php 事件日历PRO:即使对于tribe_events短代码,也使tribe_is_week()返回TRUE。

Google Calendar API停止了返回活动