First open the phpcms\libs\functions\global.func.php file
Then find the * paging function section inside
$multipage .= ''.$num.L('page_item').'';
Finally modify it That’s it, in the following format:
$multipage .= '当前第'.$curr_page.'页共'.$pages.'页共'.$num.L('page_item').'';
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!