URL for first number page in codeigniter pagination

后端 未结 4 878
粉色の甜心
粉色の甜心 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:58

    It's in the config for pagination. From the docs ( http://codeigniter.com/user_guide/libraries/pagination.html ):

    //Customizing the "Current Page" Link
    
    $config['cur_tag_open'] = '';
    $config['cur_tag_close'] = '';
    

    You can change the values of these to or whatever else you choose.

提交回复
热议问题