Category Archives: Web Content

How to Create a WordPress Child Theme

A WordPress child theme lets you make changes without affecting the parent theme. In the file manager, go to public_html/wp-content/themes, create a child them folder such as “iconic-one-child”. Under the child them directory, create two files style.css and functions.php. style.css: make sure Template is the exact directory name of the parent theme /* Theme Name:… Read More »

WordPress Is My Best Website Building Tool

WordPress is the world’s most popular website building platform. Over 43% of all websites on the internet are powered by WordPress. WordPress is a free and open source website builder that you have maximum control over your website compared to any other online website builder.

Adding PHP to WordPress

Here’s how to add a PHP code snippet using the WPCode WordPress plugin: Install and activate the plugin such as The Code Snippets menu will appear on the sidebar of your WordPress dashboard once the activation is successful.

Simple html webpage

If you just want a simple html webpage with link to limited number of articles, you can open this template page, save and modify for your needs.

How to reset WordPress Admin password without access to email

Reset Wordoress Admin Password without access to email: access phpMyAdmin, click on the database, scroll down and click on wp_users table, edit the value (select MD5 function), then click go. Or use the following command: UPDATE `wp_users` SET `user_pass` = MD5( ‘new_password’ ) WHERE `wp_users`.`user_login` = “admin_username”;