php-liquid
php-liquid copied to clipboard
how to add new tag support?
It seems there are tags not supported such as section
, form
, layout
, etc. Whenever I use them, I'll get 'Unknow Tag'. How to add support to these tags?
I can only recommend exploring the code and building your own expertise :shrug:
It should really be added to the documentation, but registerTag
is what you're looking for.
We extended this package and added our own custom tags such as form, submit, select, input
Here's a simple example of how to do it:
https://github.com/kalimatas/php-liquid/blob/c503efd5a0e5c1cd5542047c560391232851b41e/tests/Liquid/CustomTagTest.php#L41-L44