php 事件日历:覆盖默认的iCal导出为超过30个即将发生的事件(仅影响列表,地图和照片视图)。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 事件日历:覆盖默认的iCal导出为超过30个即将发生的事件(仅影响列表,地图和照片视图)。相关的知识,希望对你有一定的参考价值。

<?php

/**
 * The Events Calendar: Override the default iCal export to be more than 30
 * upcoming events (only affects List, Map, and Photo views).
 * 
 * The iCal exports for Month, Week, and Day views match their actual displays.
 *
 * @link https://gist.github.com/cliffordp/0da84c8596a04af3e7409afa62521273
 *
 * @return int
 */
add_filter( 'tribe_ical_feed_posts_per_page', function(){
	return 1000;
});

以上是关于php 事件日历:覆盖默认的iCal导出为超过30个即将发生的事件(仅影响列表,地图和照片视图)。的主要内容,如果未能解决你的问题,请参考以下文章

php 事件日历:事件聚合器:查找缺少所需UID的导入iCal事件。

php 事件日历:事件聚合器:查找缺少所需UID的导入iCal事件。

使用来自 PHP 客户端的 PUT 请求向 iCal 添加新事件?

php 事件日历:事件聚合器:覆盖导入范围默认值。

php 事件日历:事件聚合器:覆盖导入范围默认值。

如何使用 PHP 动态发布 ical 文件以供 Google 日历读取?