Author: Prabhu Balakrishnan
-
Top Page Navigation Plugins for WordPress
i have seem many wordpress pagination plugins and hardly a few i liked it. i searched everywhere on the web for wordpress plugins with attractive page navigation and i was able to find only a few. Anyways i am posting below, so that it would be useful for wordpress developers. 1. WP- Paginate http://wordpress.org/extend/plugins/wp-paginate/ 2.…
-
How to get image attachment ID in WordPress?
For many reasons to run a gallery or a slideshow you will need to know attachment ID of the photo or image you uploaded. It is very easy to find out attachment id. Just click on picture > gallery > click on the show > then place your mouse above the image, you will see…
-
20+ Beautiful Photo Slideshow Plugins for WordPress
I have been long time a fan of photo slideshows rather using photo gallery because it conserves so much space. It has really given me a lot of goose chase in search of some of the best available wordpress plugins to perform a photo slideshow in my blog. I decided to compile and document these…
-
How to output parent and child categories in WordPress
If you have a category tree in your site and often you might be needing to output both child and parents in your category page template (ex: category.php or archive.php). It can be tweaked to work like as breadcrumbs. I will show you a very easy way on how to output child and parent categories…
-
Eclipse IDE loading slow?
There has been a lot of talk on the Web regarding the Eclipse IDE which is regarded as the best editor and IDE for PHP and javascript development and other languages including. i did give a try on the the new kit and later realized that the latest version of Java JRE is needed to…
-
DSL unstable and disconnects often due to Telephone line Noise!
I have been facing this dreadful problem in the past few days with my BSNL internet connection. The worst thing is the DSL is very unstable (blinks frequently) and disconnects very often and most cases i cant even work for 5 minutes. Whenever the DSL becomes unstable, i have often noticed that the SNR margin…
-
How to capture bounty alive in Red Dead Redemption?
If you are wondering how to capture targets alive in Red Dead Redemption, it is not that hard at all. To capture targets alive, you will need to do the horse mission from Bonnie and get the lasso. Once have the lasso rope , aim and throw the lasso, hold on to both the aim…
-
Best Directory Themes for WordPress
If you are curious about how to run a web directory, there are plenty of directory scripts available and certainly wordpress is worth considering. All you have to do is install a wordpress theme or a plugin to convert your wordpress blog to a powerful link directory. These are the wordpress themes you need to…
-
How to get custom field value in WordPress?
Custom fields often associated with blog post and are widely expoited by wordpress programmers and theme designers to store various values. Here is a easy way to fetch the custom field value in wordpress. Just remember that this will only work if placed within the wordpress loop. <?php $zip_code = get_post_meta($post->ID, “zipcode”, true); echo $zip_code;…
-
How to output category name in WordPress?
Time after time, i have been forgetting this wordpress. You will know how important it is to output a category name in index page or in the blog post page (single.php) Here are the 2 easy ways to output the category name. Dont forget that this code will only work, only within the post loop.…