Categories
WordPress

Make a short code in WordPress

Creating a short code in WordPress is not easy to implement and at the same time this is also essential for building a block. But, using WordPress shortcode function, WordPress makes it simple to create. Here, you will know how to create your own shortcode using a simple example. Let’s make a plugin that display […]

Categories
WordPress

Make a simple plugin in WordPress

Plugin is very important role in WordPress and it helps to extend the WordPress functionality and features. Let’s make a simple plugin in WordPress. For Making a plugin in WordPress you have to do following things: Step 1: Create a directory in your plugin folder. Step 2: Then create a PHP file in this folder […]

Categories
WordPress

Top 5 most popular wordpress plugins

Are you looking for the most popular WordPress plugins used by WordPress experts? Good, you’re in the right place now. Here, in this article, we have discussed the best WordPress plugins for using. Choosing the best WordPress plugin for your site will help to make your website load faster and deliver a better solution for […]

Categories
WordPress

List of WordPress functions and their meanings

WordPress is an online open source website creation tool written in PHP language. It is probably the easiest and most powerful blogging tool and website content management system (or CMS) in existence today. For example, famous blogs like TechCrunch and Mashable are both on WordPress. WordPress is free and can be downloaded for self-hosted installations […]

Categories
WordPress

Make your WordPress site faster with lazy load plugins

Lots of images in a site can take much time to load. For each and every request there is another HTTP request and requires more times to wait, causes pages load slowly. Here we have put together a collection of lazy loading plugins for images with options and settings. List of lazy load plugins: Advanced […]

Categories
WordPress

Turn off Canonical URLs – WordPress SEO by Yoast

Yoast SEO works in a way to choose a focus keyword for your articles, and then makes sure that you use that focus keyword everywhere. But Yoast SEO turns the canonical URLs ON always. It has different types of features: – Page Analysis – Search Engine Optimization – XML Sitemaps – Meta & Link Elements […]

Categories
WordPress

Show related posts in WordPress without any plugin

You can show related posts in WordPress without any plugin and this will reduce your loading fast. Using a simple code you can get related posts in WordPress. Simply write the below code and put this code anywhere you want to show on your website. Example of related posts: <?php $tags = wp_get_post_tags($post->ID); if ($tags) […]

Categories
Google Adsense WordPress

Adsense Between WordPress Post

When you create a website the first thing will come to your mind is Adsense. And the best way to show it between the post. Using WordPress plugin you can randomly add Adsense Between WordPress post. Generally, placing Adsense randomly in between a post is a good way to experiment a multiple ads formats & […]

Categories
Php WordPress

Block spam comments on WordPress using .htaccess

Using .htaccess you can block IP from where you are getting spam comments on WordPress in various form regularly and thus you can block spam comments. In this post, we wiil talk a little bit about what comment spam is and why it happens. we’ll show you easy ways to stop comment spam on your […]

Categories
Php WordPress

Associate image with your WordPress profile

Using Gravatar you can make an Image as a WordPress profile picture that are associate with a email address registered with. When browsing multiple web sites, you may notice that so many users have a picture next to their name i.e. called “avatars” and WordPress has this type of avatars i.e. called “Globally Recognized Avatar” […]