URL for first number page in codeigniter pagination

后端 未结 4 870
粉色の甜心
粉色の甜心 2021-01-16 12:38

How can put url for link number 1 like other links, in codeigniter pagination, when start(refresh) page

« First < 1 2

4条回答
  •  囚心锁ツ
    2021-01-16 12:44

    CodeIgniter allows you to customize the First Link .

    You can change the opening and closing tags of the First Link .

    $config['first_tag_open'] = '
    '; $config['first_tag_close'] = '
    ';

    So just find out what the other links use by default and use them as your opening and closing tags ..

提交回复
热议问题