Home > Article > CMS Tutorial > How to modify pages template style in phpcms
First open the phpcms\libs\functions\global.func.php file
Then find the * paging function section inside
$multipage .= '<a class="a1">'.$num.L('page_item').'</a>';
Finally modify it That’s it, in the following format:
$multipage .= '<a href="#">当前第'.$curr_page.'页</a><a href="#">共'.$pages.'页</a><a href="#">共'.$num.L('page_item').'</a>';
The effect is as follows:
Related recommendations:phpcms tutorial
The above is the detailed content of How to modify pages template style in phpcms. For more information, please follow other related articles on the PHP Chinese website!