GetSimple Support Forum

Full Version: Hello!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

Im new to GS and i was searching some conditional tags! for example IF HOME, or IF INDEX, if page XXXX do this.....

are something similar available?
suny4you Wrote:Hello!

Im new to GS and i was searching some conditional tags! for example IF HOME, or IF INDEX, if page XXXX do this.....

are something similar available?

It's just php with some functions, e.g. to test for the index page:
Code:
<?php if (return_page_slug() == 'index') { ?> ... <?php } ?>

See the wiki for more information.