Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Use And/Or Operator for template

$
0
0

Replies: 0

Hi, thanks for your great plugin
I want to use OR/AND operator for pods template, I already have:

<ul class="product-details">
[if voice]
<span>{@voice}</span>
[/if]
[if video]
<span>{@video}</span>
[/if]
//other codes
</ul>

Now I want to display ul when voice and video both or one of theme are set, something like this:


[if voice && video] //or [if voice || video]
<ul class="product-details">
[if voice]
<span>{@voice}</span>
[/if]
[if video]
<span>{@video}</span>
[/if]
//other codes
</ul>
[/if]

but not working, how can I do this?


Viewing all articles
Browse latest Browse all 59525

Trending Articles