How to use the [field:global name=autoindex/] tag?
Detailed explanation of the use of [field:global name=autoindex/] tags
Recommended learning:梦weavercms
Sometimes we need Add serial numbers to the list in dede:list or dede:arclist. At this time, you need to use the "[field:global.autoindex/]" tag, which can automatically add serial numbers.
The serial number will automatically increase after adding, starting from 1 by default.
But sometimes we may not need to start from 1, such as starting from 2, then we need to write like this:
[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global]
On the contrary, if you want it to start from 0, then use this code :
[field:global name=autoindex runphp="yes"]@me=@me-1;[/field:global]
The above is the description of the use of this tag, I hope it can be helpful to everyone.
The above is the detailed content of How to use the [field:global name=autoindex/] tag. For more information, please follow other related articles on the PHP Chinese website!