Did you alter your page.php file at all?
Or anything for that matter?
I added a line in page.php for a social bookmarking plugin, but have since deleted it. Is it possible there’s a blank line or something that’s messing this up?
interesting that your links page works. Any reason why this one should be different from the other pages?
Yes, the reason must be that the links Page is using a different template! Which also brings us closer to the solution: there is something wrong in your general Page template (page.php) since the Pages that are supposedly using that deafult template are not displaying: Contact, About.
So, my guess is: there must be some faulty code in the page.php template file.
Thanks. Here’s my page.php:
[long code moderated]
Don’t post long code here – especially if you don’t use the proper way…
Paste it to http://wordpress.pastebin.ca and post back with the URL
Try this: http://wordpress.pastebin.ca/233503
There was some missing code around lines 29-30.
(Warning: I am not a coder, so no warranty that will work – though you may be lucky…)
Hmmm..made the changes but it’s still coming up blank. Any ideas?
Oh, man, what did you do with that template? A lot of php lines are not closed, like this one:
<?php
the_content(__('(Read the article)')); ?>
The ?> at the end is missing!
tada! that was it, the missing close tag. It must have been deleted when I added a plugin line earlier.
Thanks for your help!