Hello,
Is the following supposed to work ?
Global variable called default_cat_id set to 5
{exp:channel:entries channel="news" dynamic="no" year="2012" category="{default_cat_id}" orderby="date" sort="desc" }
<h1>{title}</h1>
{/exp:channel:entries}When I do it without a variable it works :
{exp:channel:entries channel="news" dynamic="no" year="2012" category="5" orderby="date" sort="desc" }
<h1>{title}</h1>
{/exp:channel:entries}When I print :
<h1>Category id is : {default_cat_id}</h1>I get :
<h1>Category id is : 5</h1>
Do you have any suggestions about how I could get this to work ?
Thanks 😊