In today’s snippet we are illustrating how to add a customer error message when using wpcf7_before_send_mail in WordPress Contact Form 7. My example follows implementing a minimal custom honeypot captcha in the Contact Form 7. The $abort = true statement will prevent the email from being sent.
Wordpress
How To Add Read More Link to Excerpts in Genesis Framework?

Genesis Pro framework builds better sites faster with powerful site-building tools for WordPress. So today’s article we are showing how to add read more links in post excerpts in the WordPress website using the Genesis theme. Use the below snippets in the functions.php file of your Genesis child theme. add_filter( ‘the_content_more_link’, ‘tp_get_read_more_link’ ); function tp_get_read_more_link()…Continue Reading
Pros and Cons of WordPress for Web Designers
Whether you want a blog, business website, sell online courses or an online store, you can create it using WordPress. WordPress is a content management system that allows users to develop websites. During its establishment, WP was a blog platform but has since become a global CMS for all users. So, as a web designer,…Continue Reading
How To Create A Custom Taxonomy In WordPress
Today’s tutorial we are showing how to create a custom taxonomy in WordPress. After WordPress 3 this feature is included in the core, so we just need to use the function with some params. The core developers created function to handle the heavy lifting for us. Why Custom Taxonomies? As your system/website grows you feel…Continue Reading
Get Uploads Directory Path in WordPress
The following code will print the uploads directory path in WordPress $upload_dir = wp_upload_dir(); print $upload_dir[‘baseurl’]; It will return the path of WordPress upload directory such as http://yourdomain.com/wp-content/uploads Basically, this function will print output like below [path] => /var/www/html/wp-content/uploads/2018/06 [url] => https://yourdomain.com/wp-content/uploads/2018/06 [subdir] => /2018/06 [basedir] => /var/www/html/wp-content/uploads [baseurl] => https://yourdomain.com/wp-content/uploads [error] => You can…Continue Reading
How to insert inline JavaScript in the footer of your page with WordPress
You can add inline JavaScript code in to the footer of the page by using hooks in functions.php. Open your functions.php file located in the current theme. Add the below code to functions.php.
Insert a post programatically in WordPress

Today we are discussing insert a post programmatically in WordPress. Everyone knows how to add a post from the WordPress’s beautiful backend. This will be helpful if you want to use automated script add all your posts into WordPress. The same reason I used this technique in one of my websites. If you want to…Continue Reading
Best selling wordpress premium templates

A clean and neat looking theme is crucial for your online presence. Here comes WordPress easy to setup, featured rich website builder. WordPress has a great online presence when it comes to personal blog, movie website, shopping cart and what not. Market share trends for content management systems for websites, WordPress leads with 60%. So…Continue Reading