Of the many excellent new features coming in WordPress 2.7, some are applauding the arrival of sticky posts.
First - what are they? Sticky posts are posts that you can “stick” to your front page. For instance, if you have a post that you published a year ago and would like to republish it to the front page of your site for a time - you can edit that post and select “Stick this post to the front page” in the Edit Post page in your WordPress admin panel. Just doing that will stick it to your front page, ahead of all the other posts on your site.
You can use CSS to style those sticky posts, as well. All you need is this markup:
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
That will insert a class=”sticky” above your post and you can use CSS to style .sticky. Cool, eh?
More? Yes, there is more. That same tag will insert special classes for your categories and tags, as well. An example?? I’m glad you asked! Hypothetically, I have a sticky post that I’ve filed in the Misc category and tagged with News, WordPress and Markup. With me so far? With all of that, plus the post_class(); tag in my template - my source code for that particular post looks like this:
<div class="post sticky hentry category-misc tag-news tag-wordpress tag-markup" id="post-ID">
Now, I can use CSS to create special styles for the following classes:
- .post
- .hentry
- .sticky
- .category-misc
- .tag-news
- .tag-wordpress
- .tag-markup
As an example, the code in your index template (and/or single/archive templates) may look like this:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h3 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Article about: <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php the_content('<span class="more-link">'.__('Read More »').'</span>'); ?>
</div>
<?php endwhile; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?>
<?php endif; ?>
I forsee lots of people having lots of fun with this! I am doing some custom work for some clients 2.7 (beta) right now, with the intention to launch them once 2.7-final is released. I’m having good fun working with the new post_class(); tag and the new features of sticky posts, threaded and paged comments. I’m excited for WordPress to release 2.7-final into the wild!




























2:02 am on November 12th, 2008
It’s about friggin’ time!
2:11 am on November 12th, 2008
I know, right? yahoo!
9:46 am on November 12th, 2008
Lisa,
Not to try to pimp out my own content, but I really do thing the post I wrote yesterday would be a worthwhile read and/or bookmark for you and your readers.
http://www.nathanrice.net/blog/definitive-sticky-posts-guide-for-wordpress-27/
I tried to cover everything I could about the upcoming Sticky Post feature.
Thanks!
Nathan
2:23 pm on November 12th, 2008
Nathan - - of course you meant to pimp your own content!
That’s cool because your post is v. helpful - thanks for sharing it!
2:51 pm on November 12th, 2008
I am going to play around till the release, and hopefully get my new site built for the WP community looking pretty in 2.7!
8:58 pm on November 22nd, 2008
I am using 2.63 and I just installed a sticky-plugin that is less than great. So, when I read this I almost jumped for joy. This is a much needed addition.
10:55 am on November 24th, 2008
Hi there! That’s so cool a second edition of your book is coming out; any chance I could buy a signed copy perhaps?
Have a great Turkey Day - and keep it phunkay!
4:00 pm on December 3rd, 2008
Sure seems like a more practical solution than continuously changing the date of the post, which is what one of my friends does.
7:31 pm on December 19th, 2008
Those snow flakes are annoying.
7:45 pm on December 19th, 2008
Thanks for the feedback, Beu - I happen to like ‘em.
Happy holidays!