在单个帖子上创建codeigniter导航

My goal is creating prev/next navigation in codeigniter single post based on article ID. I'm using CI built-in library and it produces pagination links like this:

<a data-ci-pagination-page="1" href=(some url)>Page 1</a>
<a data-ci-pagination-page="2" href=(some url)>Page 2</a>
<a data-ci-pagination-page="3" href=(some url)>Page 3</a>

Is it possible to fill data-ci-pagination-page with ID of article like this?

<a data-ci-pagination-page="23" href="http://example.com/read/23">Article 23</a>
<a data-ci-pagination-page="31" href="http://example.com/read/31">Article 31</a>
<a data-ci-pagination-page="109" href="http://example.com/read/109">Article 109</a>

I've tried to show post with limit 1, but I can't figure the prev/next ID, title, or etc.

Excuse me for my bad spelling, but this is what I can explain. Any sharing of schema, logic, trial and error, or etc. will be appreciated.