此代码应该显示我的 Google 日历 RSS 中的所有项目,但它将显示的帖子限制为大约 23 个:
问问题
636 次
1 回答
1
除非您更改了这行代码:
// ...and how many you want to display (leave at 999 for everything)
$items_to_show=999;
它应该包含 999 个条目(或它提到的所有内容)。
这里的脚本似乎有错误(在 max_results 之后缺少“= 符号”)。
替换为:
// Form the XML address.
$calendar_xml_address = str_replace("/basic","/full?singleevents=true&futureevents=true&max-results=".$items_to_show."&orderby=starttime&sortorder=a",$calendarfeed); //This goes and gets future events in your feed.
于 2012-07-14T14:26:10.417 回答