Hey guys
I’m working on a wordpress tags.
I want to show each tag in different color.
How can I combine those 2 php
[php]<?php
$rand = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f');
$color = '#'.$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)];
?>
[/php]
[php]
<?php the_tags('Tags: ', ', ', ''); ?>[/php]