Top 15 Best News themes for WordPress

There are hundreds of brilliant themes for wordpress out there. Here I am compiling a list of 15 awesome news blog/website themes for wordpress. These are professional themes and most (or all) of them are paid. These are the top 15 best wordpress themes with excellent design! 1. Weekly Magazine theme for wordpress Demo 2. […]

WordPress delete autosaved article posts revisions

By default wordpress saves all post revisions from time to time and it might clutter up your database and increase it’s size. If you want to delete the autosaved post revisions on your wordpress blog manually from phpmyadmin using sql query instead of trying out plugins, follow these steps ( assuming that you have access […]

[Solved] Fatal error: Call to undefined function the_post_thumbnail() in . . .

Today i was working on a WordPress based website which needed a custom featured posts widget to be created when I received some error. The widget used this code to get the post thumbnail: <?php the_post_thumbnail( array(87, 112, true) ); ?> Let’s not go into much details of this function (you can find it in […]

Fatal error: Cannot redeclare class FacebookApiException – Solution

This solution should work for any environment, but in my particular case it was like this: Scenario: I was coding a plugin for wordpress which uses the FacebookApiException (in facebook.php file or facebook app sdk). I included the file using: include(facebook.php); and boom! it gave me this Error: Fatal error: Cannot redeclare class FacebookApiException in/Applications/XAMPP/xamppfiles/htdocs/1/wp-content/plugins/fb-frame/facebook.phpon […]

PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature

While trying to upload a theme to one of my wordpress installation I encountered this error. I tried uploading a zip compressed theme file to my wordpress installation when I received an error saying: Unpacking the packageā€¦ Incompatible Archive. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature This error simply means […]

WordPress is_post / is_single

Have you been trying to fix some function in wordpress theme or plugin which needs to see if the user is on a post page or not? Well I’ve been trying that too! I was coding a function in my theme to check if the user is on a single post page or not. (by […]

WordBook – WP autoshare to Facebook plugin Errors

I was trying out a plugin to auto share my blog posts to facebook when I came accross this plugin. The plugin is supposed to be awesome and exactly what I needed, but unfortunately it’s not working with me. Maybe it’s due to the new facebook layout or coding changes which are not letting this […]

Nabthesis – Free theme for WordPress released by Nabtron

We are proud to release our new theme named Nabthesis for WordPress today for free. The release of future versions with patches and updates will be added soon depending upon the feedback from the users. Theme download url: Download Nabthesis 1.0 Theme discussion page: Nabthesis discussion Demo: http://nabtron.com/ If you have any queries or suggestions, […]

Adsense Daemon not showing Ads on new post

Adsense Daemon is a wonderful plugin for wordpress which brilliantly manages the ads for your wordpress blog. I made a new post today on my blog but to my surprise there was no ad on this post. I checked the source of the post to see if google was not giving any ads for this […]

Change thesis theme footer using custom hook

Thesis theme has a feature to edit many parts of the theme just by using custom hooks. We can simple remove the previous hook and add a new one at the same place to have our custom code added there. This tutorial explains how to add your own footer note to thesis 1.8 theme for […]