how to remove logo for post in diffrent category

Posted in: Newsmag
Post count: 54

Hi,

i have remove the logo in one category

<?php
if (!is_category(‘Toile de la Floride’)){
?>
<div class=”td-header-row td-header-header”>
<div class=”td-make-full”>
<div class=”td-header-sp-logo”>
<?php locate_template(‘parts/header/logo.php’, true, false); ?>
</div>
<div class=”td-header-sp-ads”>
<?php locate_template(‘parts/header/ads.php’, true); ?>
</div>
</div>
</div>
<?php
}
?>

Is workgin great. But i want the logo was remove in all post in this category, how cna i do that ?

thanks

Post count: 54

Sorry forget my message or delete them i find 2 minuts after

<?php
if (!in_category(array(’47’,’48’,’49’))){
?>
<div class=”td-header-row td-header-header”>
<div class=”td-make-full”>
<div class=”td-header-sp-logo”>
<?php locate_template(‘parts/header/logo.php’, true, false); ?>
</div>
<div class=”td-header-sp-ads”>
<?php locate_template(‘parts/header/ads.php’, true); ?>
</div>
</div>
</div>
<?php
}
?>

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.