I need to change this:
Code:
<?php the_time( get_option( 'date_format' ) ); ?>
To where it shows the post category, but it doesn't create a link to that category. It just shows it as non click-able text, appearing as defined in the css.
This creates a link, which I don't want:
Code:
<?php the_category(', ') ?>
I've tried variations of this but can't get it to work correctly, it always links it.
How do I have to properly write this?
Thanks in advance.