This is a dupe thread.. but here is the real answer I posted over here
https://www.ads-software.com/support/topic/188857?replies=4
Sorry I cant STAND when people dont answer the actual question asked but give you links to 50 different things
Here is “THE answer” for the next visitor that happens on this thread and gets confused.
go to THIS dir whereever it is
wp-content\themes\default
(assuming default theme which if you are new like I am.. thats what theme you are using)
the file in there marked index.php open it in a text editor.
find
<?php the_time(‘F jS, Y’) ?>
before it put this
Time posted: <?php the_time(‘g:i a’); ?>
make sure there is a SPACE between the > and the < or it will be jammed together.
if you want to put the time AFTER the date.. well then with a space.. put
Time posted: <?php the_time(‘g:i a’); ?>
behind
<?php the_time(‘F jS, Y’) ?>
so.. there you go.. if you want to know more.. check those links out.. but it is a simple problem with a simple solution.