PostTweetでmessage_format.tmpl書き換え時の微注意
EntryBodyはそのままだと、htmlタグも入れてしまいますので、
以下のようにします。
pluginsフォルダ内、「PostTweet/tmpl/message_format.tmpl」をエディタで開きます。
タイトルと短縮URL、本文を38文字まで表示、以降は...が表示される。
-----------------------
<mt:setvar name="title_len" value="140" />
<mt:setvarblock name="title"><mt:entrytitle remove_html="1" /></mt:setvarblock>
<mt:setvarblock name="link"> - <mt:entryshortenedpermalink /></mt:setvarblock>
<mt:setvarblock name="link_len"><mt:var name="link" count_characters="1" /></mt:setvarblock>
<mt:setvar name="entrybody_len" value="50" />
<mt:setvarblock name="entrybody"> | <$mt:EntryBody remove_html="1" $></mt:setvarblock>
<mt:setvar name="title_len" op="-" value="$link_len" />
<mt:var name="title" trim_to="$title_len" /><mt:var name="link" /><mt:var name="entrybody" trim_to="38"$>...
-------------------
<$mt:EntryBody remove_html="1" $>
ですね。
December 9, 2011 11:00 AM
|
カテゴリー:
Movable Type
||
Movable Type Open Source
||
twitter
||
プラグイン
|
|
コメント(0)
|
トラックバック(0)
|