Posts Tagged ‘WordPress’
WordPress: Post Countdown Plugin
UPDATE: Support for this plugin has moved to Headway Marketing.
Have you ever wanted to countdown to a milestone post? Here is the code needed to display a countdown to, say your 1000th post.
<?php
$post_count = wp_count_posts();
$published_posts = $post_count->publish;
$countdown = 1000-$published_posts;
echo $countdown;
?>
Update: Now You Can Use This Handy Plugin
Download Plugin: WordPress Post Countdown Plugin
Plugin Features
Use a title [...]
Wordpress 2.7 Demo
Available November 2008!
Features Include:
New Admin UI – Primary menu ajaxified, so no more click/reload to manage and click/reload to post.
Plugin Upload Integration – Load and activate through admin, no more download then ftp then activate.
Customizable Views – Drag and drop elements in post and page views. Exclude elements that you don’t use.
Quick and Bulk Edit [...]
Custom 404 Page for Wordpress
So I was bored around 4am and decided to build out a custom 404 page for my blog…
Here is the script I used for the typing effect.
If you want a custom 404 error page on your Wordpress blog, simply edit the 404.php page in your theme.
Typically found here:
wp-content/themes/(your active theme)/404.php
Here are some funny 404 pages [...]