HI there,
Is it possible to use category name as keyword.
for example..
Category = Candy
<meta name="keywords" content="Candy" />
currently im using this.
<?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<meta name="description" content="Like <?php single_post_title(''); ?>, Get <?php single_post_title(''); ?> Online" />
<meta name="keywords" content="<?php single_post_title(''); ?>" />
<?php endwhile; endif; elseif(is_home()) : ?>
<?php endif; ?>
thanks for the help