Adding Administrator User to WordPress Using phpMyAdmin

For those webmasters who have a WordPress based site, of course are familiar with one of the features of WordPress that allows an admin to add or allows third parties to register to his website, either as author, editor, or even as a subscriber. Well this time I wanted to ... Read More
Adding Administrator User to WordPress Using phpMyAdmin

Simplest WordPress Code To Display Related Posts by Category

For WordPress users who want to show Related Posts without installing the plugin, here I give the simplest code to display a list of posts under the same category. You can put this code in the single.php file inside the main loop. Here is the code: <span>Related Posts</span> <ul> <?php ... Read More
Simplest WordPress Code To Display Related Posts by Category

WordPress Code Function Get First Image Url From a Post

When it’s coming to customize WordPress theme, bloggers often prefer to do it manually by adding some functions to functions.php file rather than installing WordPress plugin. By doing this the bloggers can be more flexible to use a function that they really need. Now I want to share a code, ... Read More
WordPress Code Function Get First Image Url From a Post

Rename or Remove The Uncategorized Category

For WordPress user must be familiar with Uncategorized category. This is the first category that present at first installed WordPress. Maybe for some users this is not annoying, but others may want to rename or remove this Uncategorized. Here is how to rename or remove the Uncategorized category in WordPress ... Read More
Rename or Remove The Uncategorized Category

Protect WordPress wp-admin Area

Htaccess (or “distributed configuration files”) provide a way to make configuration changes on a per-directory. A file that contains one or more configuration directives, is placed in a particular document directory, and directives apply to that directory and all subdirectories. Secure your /wp-admin/ directory. Lock /wp-admin/ to IP addresses only some ... Read More
Protect WordPress wp-admin Area

Optimize htaccess for reliable and secure wordpress

In this article we will learn about optimizing and secure our wordpress blog by configuring .htaccess file. If you manage and edit your own wordpress blog with it’s own domain name then you are probably aware of a type of file called the .htaccess file. First check on your wordpress ... Read More
Optimize htaccess for reliable and secure wordpress