スキップしてメイン コンテンツに移動

些細な日常

Bloggerブログの記事ページに新しい投稿や前の投稿のページネーションを付ける

コメント

  1. Hello, I have pagination in my blog but I want the should be under the same label. Is it possible. Please help if you can.

    返信削除
    返信
    1. I found the codes.

      Contempo and Essential / Add in Blog1 b:widget

      <b:includable id='post' var='post'>
      <div class='post'>
      (...)
      <b:include data='post' name='postFooter'/>
      </div>
      <b:include cond='data:view.isPost' name='postPagination'/>
      </b:includable>

      Snho / Add in Blog1 b:widget

      <b:includable id='post' var='post'>
      <b:if cond='data:view.isSingleItem'>
      <div class='post-sidebar'>
      (...)
      <b:include data='post' name='postFooter'/>
      </div>
      <b:include cond='data:view.isPost' name='postPagination'/>
      </b:includable>

      Emporio / Add in Blog1 b:widget and edit the code of postPagenation

      <b:includable id='post' var='post'>
      <b:with value='"post-thumb-" + data:post.id' var='thumbClassName'>
      <div expr:class='"post-wrapper not-hero post-" + data:post.id'>
      (...)
      <div class='slide'>
      <b:include data='post' name='super.post'/>
      </div>
      <b:include cond='data:view.isPost' data='this' name='postPagination'/>
      </div>
      </b:with>
      </b:includable>

      Notable / Add in Common b:defaultmarkup

      <b:includable id='normalPost'>
      <b:if cond='(not data:view.isSingleItem or data:widget.type == "PopularPosts")'>
      <b:if cond='data:post.featuredImage and (data:widget.type != "PopularPosts" or data:this.postDisplay.showFeaturedImage)'>
      (...)
      </b:if>
      <b:include data='post' name='postFooter'/>
      </div>
      <b:include cond='data:view.isPost' name='postPagination'/>
      </b:includable>

      Good luck.

      削除