iThemes WordPress Web Designer’s Toolkit Coupon Code

WordPress Web Designer's Toolkit Coupon Code

iThemes WordPress Web Designer’s Toolkit puts all the tools in your hands to build a WordPress web design business. If you are going the buy this amazing toolkit, why not use the latest iThemes WordPress Web Designer’s Toolkit discount coupon code to save? Here is a new valid coupon code for iThemes WordPress Web Designer’s Toolkit, which can help you get 35% off, you save a lot, right? But please note this is a limited time offer, this promo code will expire on September 30, 2012

Read more

How to Make Good Use of WordPress Post Class

If you want to change the default WordPress post class, you can follow this guide to change it by yourself. It can be ‘easy as’ in the content loop adding a bit of code with a call to post_class(), we can easy add a new class like this, post_class(‘my-class’) then we just style the new class in our style.css.

Read more

How to Backup & Restore Your Website Use BackupBuddy

backupbuddy working

The BackupBuddy plugin from iThemes is really a fantastic WordPress backup and restore plugin, I really enjoyed this plugin, although this is a premium plugin, it DO save you a lot time backup and restore your site! Do you backup your site frequently? How do you backup your site, and what tools you use? Before … Read more

Remove The WordPress Comment URL Links

If you want to remove the WordPress comment url links, you can add the following code to the functions.php function dobeweb_remove_comment_fields($fields) { unset($fields[‘url’]); return $fields; } add_filter(‘comment_form_default_fields’,’dobeweb_remove_comment_fields’);