Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.29 KB

README.md

File metadata and controls

41 lines (28 loc) · 1.29 KB

SeoLinkPager extension for Yii Framework 2

Latest Stable Version Total Downloads License Dependency Status

Yii2 link pager with SEO optimization

Please submit issue reports and pull requests to the main repository. For license information check the LICENSE-file.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist igogo5yo/yii2-seo-link-pager

or add

"igogo5yo/yii2-seo-link-pager": ">=1.0"

to your composer.json file

Example

...
'pager' => [
    'class' => igogo5yo\seolinkpager\SeoLinkPager::className(),
    'prevOptions' => ['rel' => 'prev'],
    'nextOptions' => ['rel' => 'next']
],
...