0

I am using the GWCODE categories plugin for my sidebar in ExpressionEngine.

Is there a way to only show children (depth_2) categories that have 15 or more entries? I know there a entry_count variable, but I am not certain how to use it in order to filter the output

4

1 に答える 1

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}

現在使用しているコードを指定/明確化すると、上記の例を改良できます。

于 2013-03-16T11:44:43.607 に答える