Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当额外字段为特定值时,如何排除项目出现在 K2 mod_k2_content 模块中?
例如,我目前正在显示所有属性。有一个额外的字段叫做 Sold? 这是一个布尔值。如果为真,我不希望它出现在列表中。
这是一个示例,只是为了给您一个想法,希望对您有所帮助
<?php foreach ($item->extra_fields as $extraField): if($extraField->sold != true){ echo $item->title . '<br />'; echo $item->introtext; } endforeach; ?>