How to add a WordPress Admin user through PhpMyAdmin/MySQL

I have recently had the issue where the the admin user I have created for a site maintained by the client was deleted so there was no way for me to do updates on the site. In order to gain access, you can manually add a user provided that you have access to the CPanel so that you can do …

How to Set the Start Number in an HTML Ordered List

There are cases when we use HTML ordered list in two separate blocks and we need to them to have a continuous number sequence. This tip would come in handy in that situation. Simply use the start attribute in the ordered list and set its value to the number you wish it to start with. For example: Then the result …

X Theme Portfolio Page Setup

If you have created page in X Theme and set the page template to Layout – Portfolio and there are no items showing up when you view the page in the frontend, simply edit the page again and a new metabox panel called Portfolio Settings will be available in the edit page area which you can find below the slider …

Keeping child theme’s functions.php neat

It is inevitable for codes to get longer as you progress through a project which makes it important to have the codes organize. One way to make the codes maintainable is to separate them in files which will contain code blocks that are related. This is what I do to avoid the child theme’s functions.php file to get bloated: #1 …