i use a config.php with variables as
<?php
$cat01 = "sky";
$cat02 = "sea";
?>
and i'd like to add $cat01 to this category template:
<?php if (is_category('Category A')) { ?>
how can i add $cat01 in place of Category A
Thanks
i use a config.php with variables as
<?php
$cat01 = "sky";
$cat02 = "sea";
?>
and i'd like to add $cat01 to this category template:
<?php if (is_category('Category A')) { ?>
how can i add $cat01 in place of Category A
Thanks
<?php if (is_category("$cat01")) { ?>
Make sure config.php is in scope in your category template i.e. included on the page.
Thanks i will test it.
It work, thanks a lot.
You must log in to post.