Author Archives: Keenan Payne

Top 10 WordPress hacks from June 2009

Cats Who Code has put together an awesome list of the top 10 WordPress hacks from June 2009. The list has some hacks that I’ve never seen before on other websites, and are pretty unique and well-worth checking-out. Here’s one, and click over to see the full list of hacks: Make your WordPress theme translatable… Read More »

WordPress for BlackBerry Public Beta Available

The WordPress development team has been developing an open-source wordpress BlackBerry application. The people behind WordPress have also been working with some of the people at Danais to help develop the application. To get the source of for the application, go to http://blackberry.svn.wordpress.org/. Click over to find the easy to follow instructions on how to install… Read More »

Automatically get tr.im urls for your blog posts

Before, we showed you how to automatically get tinyurl’s on your WordPress blog. Well this time, I found a tutorial that will make your WordPress blog automatically generate tr.im url’s for your blog posts. First to do this, add the following lines to your functions.php file: function getTrimUrl($url) { $tinyurl = file_get_contents(“http://api.tr.im/api/trim_simple?url=”.$url); return $tinyurl; }… Read More »

iThemes is now GPL

Yes, you heard me right. iThemes, one of the biggest and most well-known WordPress premium design vendors, is now going GPL. What this means is that themes are going to be cheaper, if you buy a theme, you can use it on as many websites that you want, and much more. This is the second… Read More »

Show Username of Logged-in User

If you want to show the username of a logged-in user in some place other than the meta sidebar widget that comes pre-loaded with WordPress, you can do so by placing the following code anywhere in your WordPress theme, and it will accomplish this simple task: <?php global $current_user; if ( isset($current_user) ) {     echo… Read More »

Display the total number of your Twitter followers on your WordPress blog

I never thought about completely implementing a Twitter follower counter within your WordPress themes’ files, but Jean-Baptiste Jung. from WPRecipes.com has come up with an excellent way of achieving such a task. Okay, so first off, copy and paste the following code, and add it to your current themes function.php file: function string_getInsertedString($long_string,$short_string,$is_html=false){   if($short_string>=strlen($long_string))return… Read More »

How to Number Your Comments

Lets say you have a fairly popular blog, but you want to follow the discussions that go on in the comments section. Instead of depending on that small avatar to find where you posted, here is an easy way to number all of the comments made on a post. I have included this on my… Read More »