I need to set class name to <a> tag in CodeIgniter pagination.
CodeIgniter’s $this->pagination->create_links(); function creates links like this:
<a href="http://example.com/pages/3">3</a>
But, I need link like this:
<a href="http://example.com/pages/3" class="number">3</a>
How can I solve this problem?
Add
before