我需要在 CodeIgniter 分页中将类名设置为 <a>
标记。
CodeIgniter 的 $this->pagination->create_links();
函数创建如下链接:
<a href="http://example.com/pages/3">3</a>
但是,我需要这样的链接:
<a href="http://example.com/pages/3" class="number">3</a>
我怎么解决这个问题?
最佳答案
添加
$config['anchor_class'] = 'class="number" ';
前
$this->pagination->initialize($config);
关于php - 如何在 CodeIgniter 分页中将类名设置为 <a> 标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8707283/