向Events Calendar Pro(2.1)iCal提要添加附件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向Events Calendar Pro(2.1)iCal提要添加附件相关的知识,希望对你有一定的参考价值。
Requires filter added in ECP 2.1
add_filter('tribe_ical_feed_item','tribe_add_attachment_to_ical', 10, 2); function tribe_add_attachment_to_ical($item, $event){ 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $event->ID ); $size = 'full'; $attachments = get_posts($args); if ($attachments) { foreach ($attachments as $attachment) { $item[] = "ATTACH:".wp_get_attachment_image_src($attachment->ID, $size); } } return $item; }
以上是关于向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。