按条目计数过滤GWCODE类别

时间:2013-03-15 15:59:44

标签: plugins expressionengine categories

我在ExpressionEngine的侧边栏中使用了GWCODE类别插件。

有没有办法只显示包含15个或更多条目的子项(depth_2)类别?我知道有一个entry_count变量,但我不确定如何使用它来过滤输出

1 个答案:

答案 0 :(得分:0)

使用entry_count变量时,请确保将其指定为参数,否则不会输出任何内容。

{exp:gwcode_categories channel="example" depth="2" entry_count="yes"}
    {if {depth} == 2 && {entry_count} >= 15}
        {cat_name}
    {/if}
{/exp:gwcode_categories}

如果您指定/澄清您当前正在使用的代码,我可以优化上述示例。