« Back to zenphoto.org

Zenphoto Theming Guide

Here is the location for the ZenPhoto theming guide, a reference guide on how to create custom themes for ZenPhoto, including links to as applicable. Information will be coming soon.

theme function references (for developing)

TemplateFunctionsGuide (for theming)

PHP Short Tags

Mention a bit here about php "short tags" that shouldn't be used in plugins or themes, as they may not be usable by certain strict PHP installations. PHP "short tags" are usually in the format of <? whereas the correct syntax should be <?php

Custom Functions File

Mention a bit here about custom functions files. When using custom functions, be sure you create a separate customfunctions.php file, and "include" (i.e. use a PHP include statement) it in your theme code. That way you aren't editing core zenphoto code, and your functions are portable across upgrades.