Skip to main content

Posts

Showing posts from October, 2012

WORDPRESS CUSTOM REGISTRATION WITHOUT USING A PLUGIN

On past few days, I was posted an article about creating WordPress Custom Login Page without Using a Plugin and on previous month I’ve posted another wordpress related article which is How to Create Custom Reset or Forget Password in WordPress and to complete wordpress Meta I decided to create a new article “WordPress Custom Registration without Using a Plugin”, this sounds really interesting right? To add registration in your site you can find various wordpress plugins directly in wordpress plugin directory but this tutorial might helpful to all web developer who are willing to learn in wordpress. In this tutorial we’re using wp_insert_user() function to insert a user into the database, this functions can update a current user or insert a new user based on whether the user’s ID is present. Syntax <?php wp_insert_user( $userdata ) ?> 1 <?php wp_insert_user ( $userdata ) ?> PHP code This contains php script