How to generate public/private keys

This post shows how to generate public / private key pair. To generate public/private key pair, simply run the following command:$ ssh-keygen -t rsa Following are step-by-step instructions: 1. Open…

How to install a WordPress Theme

This post shows how to install a WordPress theme with a few clicks. To install a theme: Following are detailed instuctions: Go to your WordPress dashboard: Then click on Appearance…

Exploring WordPress Block Manager

WordPress ships a large number of blocks. Many plugins add even more blocks to your WordPress. Therefore, WordPress offers a Block Manager feature that allows you to manage your blocks.…

How to create CSV output from PHP code

This post shows how to generate CSV output from PHP code. In PHP, the fputcsv() function generates a csv file when it is provided a valid two dimensional array. Following…