我相信设置 aTweet limit
可能是一种选择。
推文限制: To fix the size of a timeline to a preset number of Tweets, use the
data-tweet-limit="5" 属性 with any value between 1 and 20 Tweets. The timeline will render the specified number of Tweets from the timeline, expanding the height of the widget to display all Tweets without scrolling.
由于小部件的大小是固定的,因此在使用此选项时它不会轮询更新。
https://dev.twitter.com/docs/embedded-timelines
例如
<a class="twitter-timeline" href="https://twitter.com/twitterapi" data-widget-id="YOUR-WIDGET-ID-HERE" data-chrome="nofooter" data-tweet-limit="3">Tweets by @twitterapi</a>
然后,如果需要,您可以手动更新小部件,方法是删除它们重新插入 html 然后调用。
twttr.widgets.load()