WonderCMS / wondercms

Fast and small flat file CMS (5 files). Built with PHP, JSON database.
https://wondercms.com
MIT License
650 stars 164 forks source link

php on a specific page #314

Closed Vell61 closed 1 month ago

Vell61 commented 8 months ago

Tell me how to place PHP code on a specific page, for example contact_form(), display a contact form (plugin) on the Contacts page (/contact)? Works only on Home...

robiso commented 4 months ago

@Vell61

you can use an if statement and echo the contact form there in your template:

<?php if ($Wcms->currentPage == 'yourNewPage') { } else { echo the contact form } ?>