Home > Article > CMS Tutorial > How to modify the title of the Imperial CMS column
To modify the column name, you can log in to the Empire CMS backend, click Column Management in the menu bar, and then enter the management column option to modify the column name.
Customizing the titles of website columns (categories) can be achieved by using column aliases. I searched the relevant information online and compiled the code for calling column aliases as follows:
<?php $cr=$empire->fetch1(“select classid,classname,bname from {$dbtbpre}enewsclass where classid='”.$GLOBALS[navclassid].”‘ limit 1″); echo $cr[‘bname’]; ?>
Recommended tutorial: Empire CMS tutorial
The above is the detailed content of How to modify the title of the Imperial CMS column. For more information, please follow other related articles on the PHP Chinese website!