Skip to content

Instantly share code, notes, and snippets.

@davist11
Created June 12, 2012 13:55
Show Gist options
  • Save davist11/2917659 to your computer and use it in GitHub Desktop.
Save davist11/2917659 to your computer and use it in GitHub Desktop.
EE Plugin Conditional
{exp:my_plugin}
{!-- This conditional works --}
{if some_thing}
{some_thing}
{/if}
{!-- This one never works --}
{if other_things}
<ul>
{other_things}
<li>
{item}
</li>
{/other_things}
</ul>
{/if}
{/exp:my_plugin}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment