This Contact Form 7 Boilerplate will help you to reduce the time to configure a Contact Form 7 WordPress plugin. You can use this Boilerplate to setup contact form 7 for a generic form to collect Name, Phone, Email and Message from a users. This will work on most small business website. Please note that this […]
Display Related Post or Product based on Taxonomy in WordPress
Related post display in for custom post type is very easy. But if you have a custom taxonomy it is little tricky. You can use the following code to display related post from a post type. This code very useful to display related product while you are using custom taxonomy. <?php // get the custom […]
How to Reduce the Character Length of WordPress Post Title
WordPress by default display fill title if you code it using via the_title() function. You can reduced the number of character display by using following simple code. <h1><a href=”<?php echo get_permalink() ?>”> <?php $title_temp=the_title(”,”,false); if(strlen($title_temp) > 30) { $title_temp = substr($title_temp, 0, 30) . ‘…’; } echo $title_temp; ?></a></h1> For example if you have space […]
How you can Disable Automatic Updates in WordPress
Do you ever break your website due to to auto upgrading of WordPress? Last night wordpress have a security update due to this my 100’s of client sites got autoupdated. Some of them break around 4 site stop working as expected due to some issue with plugin. So i recomend you to disable auto upgrading features if you don’t […]
Top 5 WordPress Tutorials
WordPress is the world’s most well known distributing stages, and it’s presently evaluated to power 26 for every of all sites. It’s profoundly customisable, simple to utilize and it’s totally free, settling on it a conspicuous decision for anything from a straightforward blog to an online outline portfolio. Due to its colossal prevalence, there’s an […]