Open-source CMS is like an operating system, can meet the needs of most people, if you want to add some special features, it is two times development, like the app. Imperial CMS Default column is not called the column custom field, we can add some of the text of the overview class, so that the reader has a general understanding of the page, quite a bit higher user experience.
Imperial CMS call column custom field (column introduction) How to operate it?
Column custom Field invocation description
Built-in Call column custom field function: Returnclassaddfield (column ID, field name), column id=0 is the current column ID. Multiple field contents can be separated by commas, example:
Get the ' classtext ' field content: $value =returnclassaddfield (0, ' classtext '); $value is the field content.
Get multiple Field Contents: $value =returnclassaddfield (1, ' classid,classtext '); $value [' Classtext '] is the field content.
What about the specific calling code?
<?=returnclassaddfield (0, ' content ')?>
Content is the name of the field that corresponds to the
Imperial CMS call column custom field (column introduction) How to Operate