I want to put several classes in a div
, using Array
, how could I do it? I tried using the code below but it did not work.
<?php
$minhas_classes = array(
'main-content' => 'main-content',
'post-count' => 'post-count',
'loop-style' => 'loop-style',
'has-image' => 'has-image',
);
?>
<div class="<?php echo $minhas_classes; ?>">
</div>