You might want to fix this problem first and then return to the other issue, since it looks like you have real problems:
“Sorry, I am unable to validate this document because on line 63 it contained one or more bytes that I cannot interpret as utf-8 (in other words, the bytes found are not valid values in the specified Character Encoding). Please check both the content of the file and the character encoding indication.”
From http://validator.w3.org/
I thank you for your help but I will deal with validating it later. Right now I am just trying to figure out how to get the post title and date to show up. If anyone can please help me it would be greatly appreciated. http://www.kickass.4everlasting.com
You’ll need to paste your index.php template somewhere to show us.
I know things are messed up but I new to wordpress and am just trying to figure everything out.
http://www.kickass.4everlasting.com/help.htm
That html is very scary. In any case. I don’t see any template calls to the_date. You sure you’re calling everything before endwhile; ? I see comment and category tags below that.
Here’s your loop:
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
?>
You need to add these tags: the_date and the_title.
You have a premature endwhile; and endif;, anything calling the date and time stuff needs to be in the same place as the_content(); and the like, inside the loop
It’s not even that it doesn’t validate, you have something in there that is so screwy the validator can’t even read it.
Thanks for all your help.
tomhanna, this is just my page to play around with until I get wordpress figured out. I understand that things are messed up in the html that’s cause I have been added tags and deleting them and messing with it trying to understand wordpress. Once I get it figured out I will know what I am doing with wordpress and will start clean with a new page and the html with be immaculate.