MTで表示中のエントリーの著者情報を表示する際のサンプルコードです。
エントリーアーカイブテンプレートに記述します。
サンプルコード
<h4>筆者情報</h4> <table class="table"><tbody> <tr> <td class="text"> <!-- 著者の名前 --> <div class="metaname"><$mt:EntryAuthorDisplayName$></div> <!-- ユーザープロフィールに関するカスタムフィールドを表示します。 --> <p><mt:AuthorCustomFields><mt:cf_user01></mt:AuthorCustomFields></p> <hr> <mt:SetVarBlock name="cur_author"><$mt:EntryAuthorUsername$></mt:SetVarBlock> <ul class="list fs12 icons-ul"> <!-- 著者のの最新のブログ記事3件を表示しています。 --> <mt:Entries author="$cur_author" lastn="3"> <li><i class="icon-li icon-angle-right hidden-phone"></i><a href="<$mt:EntryPermalink$>"><$mt:EntryTitle$><span class="date"><$mt:EntryDate$></span></a></li> </mt:Entries> </ul> </td></tr> </tbody></table>