Hi
I have been trying to find a way to show the posts category just before the title of the post. I dont need it to be shown everywhere - just on the frontpage.
Can anybody help me?
Hi
I have been trying to find a way to show the posts category just before the title of the post. I dont need it to be shown everywhere - just on the frontpage.
Can anybody help me?
Try editing index.php and using something like:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class();?>>
<?php the_category();?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>This topic has been closed to new replies.