Category: Blog


8 Must Have WordPress Plugins for 2022

1. Jetpack by WordPress.com One of the best WordPress plug-ins for many reasons. First of all, downloaders get informed about the number of visits their site has and they can also increase their visits by using some tools offered like Publicize and Related Posts. Not only that, but it also provides protection from hackers as […]

Continue Reading

Step-by-step method to quickly activate permalink in WordPress – Easy Method

Using this method you can activate SEO permalink in WordPress. Permalink is a highly recommended for all WordPress site. By default WordPress user an ugly URL. You can edit the permalink by filling location. Go Dashboard->Settings->Permalinl Then select permalink as following screen shot. This will help you to grow you SEO result 20%.

Continue Reading
wordpress log

WordPress Log

What is wordpress log file? How we enable it? Thank you for reading my blog. After reading this article you will able to learn what is WordPress log and its usage in development of WordPress site. As a wordpress developer wordpress log file help me to find out issues in my theme and query variable. I […]

Continue Reading

Top 10 WordPress experienced developer interview questions

Some of questions that I may ask if i am hiring an experienced WordPress developer. About hooks. Type of hooks. Different between filter and action. WordPress setup with CDN About WordPress managed hosting provider like Wpengine Git with wordpress WP CLI. Backup method in wordpress. WordPress site migration without any downtime. Q1.         What are and […]

Continue Reading

How create a Simple Theme Option panel in WordPress Using API

Using this method you can create a simple theme option panel. This code using wordpress inbuild api function to create theme option panel <?php // create custom plugin settings menu add_action(‘admin_menu’, ‘my_cool_plugin_create_menu’); function my_cool_plugin_create_menu() { //create new top-level menu add_menu_page(‘Google Ad’, ‘Google Ad Settings’, ‘administrator’, __FILE__, ‘my_cool_plugin_settings_page’ , ‘dashicons-screenoptions’, __FILE__) ); //call register settings function […]

Continue Reading

Change URL of wordpress site Using MYSQL

You can Change URL of wordpress site Using MYSQL. Run this code in your phpmyadmin or any SQL command window. UPDATE wp_options SET option_value = replace(option_value, ‘http://old.com’, ‘http://new.com’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’; UPDATE wp_posts SET guid = replace(guid, ‘http://old.com’,’http://new.com’); UPDATE wp_posts SET post_content = replace(post_content, ‘http://old.com’, ‘http://new.com’); UPDATE wp_postmeta SET meta_value = […]

Continue Reading