☆☆ 新着記事 ☆☆

2018年9月22日土曜日

Bloggerでラベル別にタイトルだけの一覧ページを作る方法



1. 『管理画面>テンプレート>HTMLの編集>ウィジェットテンプレートの展開にチェック』までを行なって、HTMLの編集画面を用意する。

2. ページ内検索で『b:include data='post' name='post'/』を検索(981行目くらい)して、
b:include data='post' name='post'/』を削除しつつ、 以下のコードを挿入する。

<!--ラベル別にタイトルだけの一覧ページ開始-->    
<b:if cond='data:blog.pageName == &quot;&quot;'>
  <b:include data='post' name='post'/>
  <b:else/>
  <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <b:include data='post' name='post'/>
    <b:else/>
    <div class='post hentry'>
      <a expr:name='data:post.id'/>
      <b:if cond='data:post.title'>
        <h3 class='post-title entry-title'>
          <b:if cond='data:post.link'>
            <a expr:href='data:post.link'><data:post.title/></a>
            <b:else/>
            <b:if cond='data:post.url'>
              <a expr:href='data:post.url'><data:post.title/></a>
              <b:else/>
              <data:post.title/>
            </b:if>
          </b:if>
        </h3>
      </b:if>
    </div>
  </b:if>
</b:if>
<!--ラベル別にタイトルだけの一覧ページ終了->  

0 件のコメント:

コメントを投稿