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?
This is the below code using this you can add the class inside the anchor tag of pagination in Code Ignitor
$config['attributes'] = array('class' => 'myclass');
Add
$config['anchor_class'] = 'class="number" ';
before
$this->pagination->initialize($config);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With