MTSearchResults
実行した検索の結果を表示するブロックタグです。このあタグの内側では、記事に関するファンクションタグ MTEntry...
を使うことができます。また、MTBlog...
を使って、検索された記事が投稿されているブログに関する情報を表示できます。
検索フォームで IncludeBlogs=N
のようにブログの ID が指定されている場合、指定された ID のブログが検索対象になります。指定されていない場合は Movable Type で管理しているすべてのブログが対象になります。検索フォームで対象ブログを指定していない場合の動作は、環境変数 IncludeBlogs, ExcludeBlogs で設定できます。
- 使い方
<mt:SearchResults>
<mt:SearchResultsHeader>
<section id="search-results">
<span id="current-page" class="hidden"><$mt:CurrentPage$></span>
<h1 class="title">
<mt:IfStatic><mt:IfStraightSearch>
「<$mt:SearchString$>」と一致するもの - <$mt:SearchResultCount$> 件
</mt:IfStraightSearch></mt:IfStatic>
<mt:IfTagSearch>
タグ「<$mt:SearchString$>」が付けられているもの
</mt:IfTagSearch>
</h1>
</mt:SearchResultsHeader>
<$mt:Include module="記事の概要" hide_counts="1"$>
<mt:SearchResultsFooter>
</section>
<nav class="pagination">
<ul>
<mt:IfMoreResults>
<li><a rel="prev" href="<$mt:NextLink encode_html="1"$>" onclick="return swapContent();">過去の記事</a></li>
</mt:IfMoreResults>
<mt:IfPreviousResults>
<li><a rel="next" href="<$mt:PreviousLink encode_html="1"$>" onclick="return swapContent(-1);">新しい記事</a></li>
</mt:IfPreviousResults>
</ul>
</nav>
</mt:SearchResultsFooter>
</mt:SearchResults>