12

サイトでは、アカウントからの最新のツイートを表示するために必要です。

以前は、Twitter の Goodies ページに移動して 1 つのツイートに制限することで、これを実現できました。Timeline 埋め込みの新しいバージョンには、これを行うためのオプションがないようです。保存した古いバージョン 1 の埋め込みを使用できますが、古いものはすべて Twitter の FAQ によると来年には機能しなくなるため、新しいバージョン 1.1 のコードを使用したいと考えています。

以下は、Twitter が提供する新しいコードです。元のバージョンで可能だったように、「count = 1」を追加する方法/場所を知る必要があります。

<a class="twitter-timeline" href="https://twitter.com/example" data-widget-id="0000000000">Tweets by @example</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
4

2 に答える 2

0
  jQuery(function($){
    $(".tweet").tweet({
      join_text: "auto",
      username: "seaofclouds",
      avatar_size: 48,
      count: 3,
      auto_join_text_default: " we said, ",
      auto_join_text_ed: " we ",
      auto_join_text_ing: " we were ",
      auto_join_text_reply: " we replied ",
      auto_join_text_url: " we were checking out ",
      loading_text: "loading tweets..."
    });
  });

その他のオプションについては、こちらをご覧ください

于 2012-10-15T00:14:23.267 に答える