使用Smarty模板。
只是想知道是否可以在foreach搜索结果页面中添加2个捕获选项IE opt9 =“DogFriendly”和opt10 =“caravans”为狗友好的大篷车提供搜索结果?如果是这样,我将如何实现它?
{foreach from=$results item="entry"}
{capture name="opt9"}
{get_extra_field id=$entry.id fid=9}
{/capture}
{if $smarty.capture.opt9|strip:'' == "DogFriendly"}
{capture name="opt10"}
{get_extra_field id=$entry.id fid=10}
{/capture}
{if $smarty.capture.opt10|strip:'' == "caravans"}
{/foreach}