Okay, I am creating a new website, however the information on it will be partially "timeless", therefor I need several posts to be without date, month and year. Is that possible?
And I need those posts (without dates) to be on top over the other posts (with dates). E.g. like a forum where you have sticky post, however without any date.
Is this possible? And if so, how?
Posts can be set as Stickies already if i remember correctly...
You'd just need sometime thing like this...
<?php if (is_sticky()) { ?>
THIS POST IS A STICKY DO SOMETHING
<?php } else { ?>
POST IS NOT A STICKY SO PUT EXISTING DATE CODE HERE
<?php } ?>
On page.php? Or where?
And how do I hide the dates?
Nevermind I found the plugin called WP-Sticky. Seems to do what I want. :D
Depends where you want to do it, index.php for when viewing all posts.. single.php for a single post, and archive(s).php for category level viewing etc...
Glad you got what you wanted anyway... ;-)