Skip to content

Instantly share code, notes, and snippets.

@felipe-pita
Created June 3, 2019 23:52
Show Gist options
  • Save felipe-pita/66555c627799876dfec791d5386df03f to your computer and use it in GitHub Desktop.
Save felipe-pita/66555c627799876dfec791d5386df03f to your computer and use it in GitHub Desktop.
<?php
// Sidebar dinâmica
$category = get_queried_object();
$category = $category->term_id;
?>
<?php if ($category === 19) : // Camisetas ?>
<?php elseif ($category === 65) : // Livros ?>
<?php elseif ($category === 1413) : // Presentes ?>
<?php elseif ($category === 79) : // Vestuario ?>
<?php elseif ($category === 46) : // Decoração ?>
<?php elseif ($category === 29) : // Cozinha ?>
<?php elseif ($category === 1290) : // Kits ?>
<?php else: ?>
<?php dynamic_sidebar('loja'); ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment