9
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【baserCMS】アーカイブページに於いて<head>内に前後ページの<link>タグを出力するコード。

Last updated at Posted at 2018-10-04

##内部対策SEO:ページネーション対策 [link rel="next"/"prev"]
アーカイブページでページネーションを使用している際に
現在のページに対する前後ページの存在をlinkタグで吐き出すコードです。

rel=prev/nextは コンテンツを理解するためのヒントとして使われているため、
必ず処理されるわけではありませんが、SEO対策の上で必要な物なので
これをhead内に入れておくだけで安心です。

<?php	
	$archiveBaseRrl = preg_replace('/\/page:[1-9].*?$/', '', Router::url($this->BcBaser->getHere(), true));
$params         = $this->Paginator->params();
if ($this->Paginator->hasNext()) {
	$nextPageUrl = $archiveBaseRrl . '/page:' . ($params['page']+1);
	echo '<link rel="next" href="' . h($nextPageUrl) . '" />';
}
if ($this->Paginator->hasPrev()) {
	$prevPageUrl = $archiveBaseRrl . '/page:' . ($params['page']-1);
	echo '<link rel="prev" href="' . h($prevPageUrl) . '" />';
} 
    ?>
9
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?