PHP 添加附件到Events Calendar Pro(2.1)iCal feed

Posted

tags:

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

add_filter('tribe_ical_feed_item','tribe_add_attachment_to_ical', 10, 2);

function tribe_add_attachment_to_ical($item, $event){

	$args = array(
		'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;
}

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

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

PHP 在论文中将大图像添加到附件页面

Google Calendar PHP API v3 中的 ical() 类需要哪个 PHP 脚本文件

Google Calendar PHP API v3 中的 ical() 类需要哪个 PHP 脚本文件

Jquery日历插件e-calendar升级版

谷歌日历同步与完整日历io